Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r53636 - in sandbox/SOC/2009/unicode/libs/unicode: data_parser src/ucd
From: loufoque_at_[hidden]
Date: 2009-06-04 12:20:02


Author: mgaunard
Date: 2009-06-04 12:19:56 EDT (Thu, 04 Jun 2009)
New Revision: 53636
URL: http://svn.boost.org/trac/boost/changeset/53636

Log:
unintialized reads in parser fixed
Text files modified:
   sandbox/SOC/2009/unicode/libs/unicode/data_parser/Jamfile.v2 | 28
   sandbox/SOC/2009/unicode/libs/unicode/data_parser/read_character_properties.hpp | 16
   sandbox/SOC/2009/unicode/libs/unicode/data_parser/write_character_properties.cpp | 3
   sandbox/SOC/2009/unicode/libs/unicode/src/ucd/uni_ucd_interface_impl_data_1.ipp | 512 +++++++-------
   sandbox/SOC/2009/unicode/libs/unicode/src/ucd/uni_ucd_interface_impl_data_3.ipp | 960 +++++++++++++-------------
   sandbox/SOC/2009/unicode/libs/unicode/src/ucd/uni_ucd_interface_impl_data_4.ipp | 64
   sandbox/SOC/2009/unicode/libs/unicode/src/ucd/uni_ucd_interface_impl_data_5.ipp | 576 ++++++++--------
   sandbox/SOC/2009/unicode/libs/unicode/src/ucd/uni_ucd_interface_impl_data_6.ipp | 768 ++++++++++----------
   sandbox/SOC/2009/unicode/libs/unicode/src/ucd/uni_ucd_interface_impl_data_7.ipp | 1408 ++++++++++++++++++++--------------------
   sandbox/SOC/2009/unicode/libs/unicode/src/ucd/uni_ucd_interface_impl_data_8.ipp | 704 ++++++++++----------
   sandbox/SOC/2009/unicode/libs/unicode/src/ucd/uni_ucd_interface_impl_data_9.ipp | 448 ++++++------
   11 files changed, 2752 insertions(+), 2735 deletions(-)

Modified: sandbox/SOC/2009/unicode/libs/unicode/data_parser/Jamfile.v2
==============================================================================
--- sandbox/SOC/2009/unicode/libs/unicode/data_parser/Jamfile.v2 (original)
+++ sandbox/SOC/2009/unicode/libs/unicode/data_parser/Jamfile.v2 2009-06-04 12:19:56 EDT (Thu, 04 Jun 2009)
@@ -9,22 +9,22 @@
 project
     : requirements
       <include>../../..
- <include>$(BOOST_ROOT)
+ <include>$(BOOST_ROOT)
     ;
 
 exe data_parser : main.cpp
- read_character_properties.cpp
- read_character_properties_arabicshaping.cpp
- read_character_properties_blocks.cpp
- read_character_properties_grapheme_break.cpp
- read_character_properties_helpers.cpp
- read_character_properties_linebreak.cpp
- read_character_properties_sentence.cpp
- read_character_properties_specialcasing.cpp
- read_character_properties_unicodedata.cpp
- read_character_properties_word_break.cpp
- read_collation_data.cpp
- write_character_properties.cpp
+ read_character_properties.cpp
+ read_character_properties_arabicshaping.cpp
+ read_character_properties_blocks.cpp
+ read_character_properties_grapheme_break.cpp
+ read_character_properties_helpers.cpp
+ read_character_properties_linebreak.cpp
+ read_character_properties_sentence.cpp
+ read_character_properties_specialcasing.cpp
+ read_character_properties_unicodedata.cpp
+ read_character_properties_word_break.cpp
+ read_collation_data.cpp
+ write_character_properties.cpp
 
- ../src/unicode_properties.cpp
+ ../src/unicode_properties.cpp
 ;

Modified: sandbox/SOC/2009/unicode/libs/unicode/data_parser/read_character_properties.hpp
==============================================================================
--- sandbox/SOC/2009/unicode/libs/unicode/data_parser/read_character_properties.hpp (original)
+++ sandbox/SOC/2009/unicode/libs/unicode/data_parser/read_character_properties.hpp 2009-06-04 12:19:56 EDT (Thu, 04 Jun 2009)
@@ -58,6 +58,20 @@
 
                 collation_data() { variable = false; weight1 = 0;
                                         weight2 = 0; weight3 = 0; weight4 = 0; };
+
+ bool operator==(const collation_data& other) const
+ {
+ return variable == other.variable
+ && weight1 == other.weight1
+ && weight2 == other.weight2
+ && weight3 == other.weight3
+ && weight4 == other.weight4;
+ }
+
+ bool operator!=(const collation_data& other) const
+ {
+ return !operator==(other);
+ }
                         };
 
             struct collation_entry
@@ -112,6 +126,8 @@
                                         unknown_char (false),
                     sort_variable(false),
                     sort_type(sort_type::default_),
+ sort_index_or_data1(0),
+ sort_data2(0),
                                         uppercase (0),
                                         lowercase (0),
                                         titlecase (0),

Modified: sandbox/SOC/2009/unicode/libs/unicode/data_parser/write_character_properties.cpp
==============================================================================
--- sandbox/SOC/2009/unicode/libs/unicode/data_parser/write_character_properties.cpp (original)
+++ sandbox/SOC/2009/unicode/libs/unicode/data_parser/write_character_properties.cpp 2009-06-04 12:19:56 EDT (Thu, 04 Jun 2009)
@@ -706,7 +706,8 @@
     {
         // compare two primitive structures
         // workaround for boost interop issues
- if (memcmp(&(*iter_src), &(*iter_try), sizeof(collation_data)) != 0)
+ //if (memcmp(&(*iter_src), &(*iter_try), sizeof(collation_data)) != 0)
+ if(*iter_src != *iter_try)
         {
             return false;
         }

Modified: sandbox/SOC/2009/unicode/libs/unicode/src/ucd/uni_ucd_interface_impl_data_1.ipp
==============================================================================
--- sandbox/SOC/2009/unicode/libs/unicode/src/ucd/uni_ucd_interface_impl_data_1.ipp (original)
+++ sandbox/SOC/2009/unicode/libs/unicode/src/ucd/uni_ucd_interface_impl_data_1.ipp 2009-06-04 12:19:56 EDT (Thu, 04 Jun 2009)
@@ -49823,7 +49823,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -49831,7 +49831,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -49847,7 +49847,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -49855,7 +49855,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -49871,7 +49871,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -49879,7 +49879,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -49895,7 +49895,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -49903,7 +49903,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -49919,7 +49919,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -49927,7 +49927,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -49943,7 +49943,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -49951,7 +49951,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -49967,7 +49967,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -49975,7 +49975,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -49991,7 +49991,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -49999,7 +49999,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -50015,7 +50015,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -50023,7 +50023,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -50039,7 +50039,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -50047,7 +50047,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -50063,7 +50063,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -50071,7 +50071,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -50087,7 +50087,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -50095,7 +50095,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -50111,7 +50111,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -50119,7 +50119,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -50135,7 +50135,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -50143,7 +50143,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -50159,7 +50159,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -50167,7 +50167,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -50183,7 +50183,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -50191,7 +50191,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -50207,7 +50207,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -50215,7 +50215,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -50231,7 +50231,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -50239,7 +50239,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -50255,7 +50255,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -50263,7 +50263,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -50279,7 +50279,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -50287,7 +50287,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -50303,7 +50303,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -50311,7 +50311,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -50327,7 +50327,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -50335,7 +50335,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -50351,7 +50351,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -50359,7 +50359,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -50375,7 +50375,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -50383,7 +50383,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -50399,7 +50399,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -50407,7 +50407,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -50423,7 +50423,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -50431,7 +50431,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -50447,7 +50447,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -50455,7 +50455,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -50471,7 +50471,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -50479,7 +50479,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -50495,7 +50495,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -50503,7 +50503,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -50519,7 +50519,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -50527,7 +50527,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -50543,7 +50543,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -50551,7 +50551,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -50567,7 +50567,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -50575,7 +50575,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -50591,7 +50591,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -50599,7 +50599,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -50615,7 +50615,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -50623,7 +50623,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -50639,7 +50639,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -50647,7 +50647,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -50663,7 +50663,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -50671,7 +50671,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -50687,7 +50687,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -50695,7 +50695,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -50711,7 +50711,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -50719,7 +50719,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -50735,7 +50735,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -50743,7 +50743,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -50759,7 +50759,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -50767,7 +50767,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -50783,7 +50783,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -50791,7 +50791,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -50807,7 +50807,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -50815,7 +50815,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -50831,7 +50831,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -50839,7 +50839,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -50855,7 +50855,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -50863,7 +50863,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -50879,7 +50879,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -50887,7 +50887,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -50903,7 +50903,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -50911,7 +50911,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -50927,7 +50927,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -50935,7 +50935,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -50951,7 +50951,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -50959,7 +50959,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -50975,7 +50975,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -50983,7 +50983,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -50999,7 +50999,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51007,7 +51007,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51023,7 +51023,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51031,7 +51031,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51047,7 +51047,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51055,7 +51055,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51071,7 +51071,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51079,7 +51079,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51095,7 +51095,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51103,7 +51103,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51119,7 +51119,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51127,7 +51127,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51143,7 +51143,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51151,7 +51151,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51167,7 +51167,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51175,7 +51175,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51191,7 +51191,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51199,7 +51199,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51215,7 +51215,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51223,7 +51223,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51239,7 +51239,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51247,7 +51247,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51263,7 +51263,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51271,7 +51271,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51287,7 +51287,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51295,7 +51295,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51311,7 +51311,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51319,7 +51319,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51335,7 +51335,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51343,7 +51343,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51359,7 +51359,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51367,7 +51367,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51383,7 +51383,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51391,7 +51391,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51407,7 +51407,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51415,7 +51415,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51431,7 +51431,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51439,7 +51439,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51455,7 +51455,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51463,7 +51463,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51479,7 +51479,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51487,7 +51487,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51503,7 +51503,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51511,7 +51511,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51527,7 +51527,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51535,7 +51535,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51551,7 +51551,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51559,7 +51559,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51575,7 +51575,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51583,7 +51583,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51599,7 +51599,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51607,7 +51607,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51623,7 +51623,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51631,7 +51631,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51647,7 +51647,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51655,7 +51655,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51671,7 +51671,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51679,7 +51679,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51695,7 +51695,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51703,7 +51703,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51719,7 +51719,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51727,7 +51727,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51743,7 +51743,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51751,7 +51751,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51767,7 +51767,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51775,7 +51775,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51791,7 +51791,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51799,7 +51799,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51815,7 +51815,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51823,7 +51823,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51839,7 +51839,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51847,7 +51847,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51863,7 +51863,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51871,7 +51871,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51887,7 +51887,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51895,7 +51895,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51911,7 +51911,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51919,7 +51919,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51935,7 +51935,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51943,7 +51943,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51959,7 +51959,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51967,7 +51967,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51983,7 +51983,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51991,7 +51991,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52007,7 +52007,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52015,7 +52015,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52031,7 +52031,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52039,7 +52039,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52055,7 +52055,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52063,7 +52063,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52079,7 +52079,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52087,7 +52087,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52103,7 +52103,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52111,7 +52111,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52127,7 +52127,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52135,7 +52135,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52151,7 +52151,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52159,7 +52159,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52175,7 +52175,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52183,7 +52183,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52199,7 +52199,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52207,7 +52207,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52223,7 +52223,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52231,7 +52231,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52247,7 +52247,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52255,7 +52255,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52271,7 +52271,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52279,7 +52279,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52295,7 +52295,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52303,7 +52303,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52319,7 +52319,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52327,7 +52327,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52343,7 +52343,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52351,7 +52351,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52367,7 +52367,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52375,7 +52375,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52391,7 +52391,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52399,7 +52399,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52415,7 +52415,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52423,7 +52423,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52439,7 +52439,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52447,7 +52447,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52463,7 +52463,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52471,7 +52471,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52487,7 +52487,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52495,7 +52495,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52511,7 +52511,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52519,7 +52519,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52535,7 +52535,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52543,7 +52543,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52559,7 +52559,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52567,7 +52567,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52583,7 +52583,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52591,7 +52591,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52607,7 +52607,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52615,7 +52615,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52631,7 +52631,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52639,7 +52639,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52655,7 +52655,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52663,7 +52663,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52679,7 +52679,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52687,7 +52687,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52703,7 +52703,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52711,7 +52711,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52727,7 +52727,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52735,7 +52735,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52751,7 +52751,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52759,7 +52759,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52775,7 +52775,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52783,7 +52783,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52799,7 +52799,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52807,7 +52807,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52823,7 +52823,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52831,7 +52831,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52847,7 +52847,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52855,7 +52855,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52871,7 +52871,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52879,7 +52879,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,

Modified: sandbox/SOC/2009/unicode/libs/unicode/src/ucd/uni_ucd_interface_impl_data_3.ipp
==============================================================================
--- sandbox/SOC/2009/unicode/libs/unicode/src/ucd/uni_ucd_interface_impl_data_3.ipp (original)
+++ sandbox/SOC/2009/unicode/libs/unicode/src/ucd/uni_ucd_interface_impl_data_3.ipp 2009-06-04 12:19:56 EDT (Thu, 04 Jun 2009)
@@ -1190,7 +1190,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -1198,7 +1198,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -1214,7 +1214,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -1222,7 +1222,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -1238,7 +1238,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -1246,7 +1246,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -1262,7 +1262,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -1270,7 +1270,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -1286,7 +1286,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -1294,7 +1294,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -1310,7 +1310,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -1318,7 +1318,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -1334,7 +1334,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -1342,7 +1342,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -1358,7 +1358,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -1366,7 +1366,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -1382,7 +1382,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -1390,7 +1390,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -1406,7 +1406,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -1414,7 +1414,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -1430,7 +1430,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -1438,7 +1438,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -1454,7 +1454,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -1462,7 +1462,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -1478,7 +1478,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -1486,7 +1486,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -1502,7 +1502,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -1510,7 +1510,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -1526,7 +1526,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -1534,7 +1534,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -1550,7 +1550,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -1558,7 +1558,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -1574,7 +1574,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -1582,7 +1582,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -1598,7 +1598,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -1606,7 +1606,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -1622,7 +1622,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -1630,7 +1630,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -1646,7 +1646,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -1654,7 +1654,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -1670,7 +1670,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -1678,7 +1678,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -1694,7 +1694,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -1702,7 +1702,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -1718,7 +1718,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -1726,7 +1726,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -1742,7 +1742,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -1750,7 +1750,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -1766,7 +1766,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -1774,7 +1774,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -1790,7 +1790,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -1798,7 +1798,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -1814,7 +1814,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -1822,7 +1822,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -1838,7 +1838,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -1846,7 +1846,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -1862,7 +1862,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -1870,7 +1870,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -1886,7 +1886,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -1894,7 +1894,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -1910,7 +1910,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -1918,7 +1918,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -1934,7 +1934,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -1942,7 +1942,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -1958,7 +1958,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -1966,7 +1966,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -1982,7 +1982,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -1990,7 +1990,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -2006,7 +2006,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -2014,7 +2014,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -2030,7 +2030,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -2038,7 +2038,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -2054,7 +2054,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -2062,7 +2062,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -2078,7 +2078,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -2086,7 +2086,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -2102,7 +2102,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -2110,7 +2110,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -2126,7 +2126,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -2134,7 +2134,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -2150,7 +2150,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -2158,7 +2158,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -2174,7 +2174,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -2182,7 +2182,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -2198,7 +2198,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -2206,7 +2206,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -2222,7 +2222,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -2230,7 +2230,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -2246,7 +2246,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -2254,7 +2254,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -2270,7 +2270,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -2278,7 +2278,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -2294,7 +2294,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -2302,7 +2302,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -2318,7 +2318,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -2326,7 +2326,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -2342,7 +2342,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -2350,7 +2350,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -2366,7 +2366,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -2374,7 +2374,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -2390,7 +2390,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -2398,7 +2398,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -2414,7 +2414,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -2422,7 +2422,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -2438,7 +2438,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -2446,7 +2446,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -2462,7 +2462,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -2470,7 +2470,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -2486,7 +2486,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -2494,7 +2494,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -2510,7 +2510,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -2518,7 +2518,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -2534,7 +2534,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -2542,7 +2542,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -2558,7 +2558,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -2566,7 +2566,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -2582,7 +2582,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -2590,7 +2590,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -2606,7 +2606,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -2614,7 +2614,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -2630,7 +2630,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -2638,7 +2638,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -2654,7 +2654,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -2662,7 +2662,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -2678,7 +2678,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -2686,7 +2686,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -2702,7 +2702,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -2710,7 +2710,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -2726,7 +2726,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -2734,7 +2734,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -2750,7 +2750,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -2758,7 +2758,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -2774,7 +2774,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -2782,7 +2782,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -2798,7 +2798,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -2806,7 +2806,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -2822,7 +2822,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -2830,7 +2830,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -2846,7 +2846,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -2854,7 +2854,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -2870,7 +2870,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -2878,7 +2878,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -2894,7 +2894,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -2902,7 +2902,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -2918,7 +2918,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -2926,7 +2926,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -2942,7 +2942,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -2950,7 +2950,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -2966,7 +2966,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -2974,7 +2974,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -2990,7 +2990,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -2998,7 +2998,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -3014,7 +3014,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -3022,7 +3022,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -3038,7 +3038,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -3046,7 +3046,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -3062,7 +3062,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -3070,7 +3070,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -3086,7 +3086,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -3094,7 +3094,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -10049,7 +10049,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -10057,7 +10057,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -10073,7 +10073,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -10081,7 +10081,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -10097,7 +10097,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -10105,7 +10105,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -10121,7 +10121,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -10129,7 +10129,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -10145,7 +10145,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -10153,7 +10153,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -10169,7 +10169,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -10177,7 +10177,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -10193,7 +10193,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -10201,7 +10201,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -10217,7 +10217,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -10225,7 +10225,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -10241,7 +10241,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -10249,7 +10249,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -10265,7 +10265,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -10273,7 +10273,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -10289,7 +10289,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -10297,7 +10297,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -10313,7 +10313,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -10321,7 +10321,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -10337,7 +10337,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -10345,7 +10345,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -10361,7 +10361,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -10369,7 +10369,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -10385,7 +10385,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -10393,7 +10393,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -10409,7 +10409,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -10417,7 +10417,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -10433,7 +10433,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -10441,7 +10441,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -10457,7 +10457,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -10465,7 +10465,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -10481,7 +10481,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -10489,7 +10489,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -10505,7 +10505,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -10513,7 +10513,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -10529,7 +10529,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -10537,7 +10537,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -10553,7 +10553,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -10561,7 +10561,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -10577,7 +10577,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -10585,7 +10585,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -10601,7 +10601,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -10609,7 +10609,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -10625,7 +10625,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -10633,7 +10633,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -10649,7 +10649,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -10657,7 +10657,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -10673,7 +10673,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -10681,7 +10681,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -10697,7 +10697,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -10705,7 +10705,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -10721,7 +10721,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -10729,7 +10729,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -10745,7 +10745,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -10753,7 +10753,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -10769,7 +10769,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -10777,7 +10777,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -10793,7 +10793,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -10801,7 +10801,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -10817,7 +10817,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -10825,7 +10825,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -10841,7 +10841,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -10849,7 +10849,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -10865,7 +10865,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -10873,7 +10873,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -10889,7 +10889,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -10897,7 +10897,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -10913,7 +10913,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -10921,7 +10921,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -10937,7 +10937,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -10945,7 +10945,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -10961,7 +10961,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -10969,7 +10969,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -10985,7 +10985,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -10993,7 +10993,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11009,7 +11009,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11017,7 +11017,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11033,7 +11033,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11041,7 +11041,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11057,7 +11057,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11065,7 +11065,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11081,7 +11081,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11089,7 +11089,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11105,7 +11105,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11113,7 +11113,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11129,7 +11129,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11137,7 +11137,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11153,7 +11153,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11161,7 +11161,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11177,7 +11177,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11185,7 +11185,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11201,7 +11201,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11209,7 +11209,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11225,7 +11225,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11233,7 +11233,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11249,7 +11249,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11257,7 +11257,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11273,7 +11273,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11281,7 +11281,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11297,7 +11297,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11305,7 +11305,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11321,7 +11321,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11329,7 +11329,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11345,7 +11345,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11353,7 +11353,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11369,7 +11369,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11377,7 +11377,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11393,7 +11393,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11401,7 +11401,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11417,7 +11417,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11425,7 +11425,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11441,7 +11441,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11449,7 +11449,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11465,7 +11465,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11473,7 +11473,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11489,7 +11489,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11497,7 +11497,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11513,7 +11513,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11521,7 +11521,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11537,7 +11537,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11545,7 +11545,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11561,7 +11561,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11569,7 +11569,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11585,7 +11585,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11593,7 +11593,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11609,7 +11609,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11617,7 +11617,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11633,7 +11633,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11641,7 +11641,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11657,7 +11657,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11665,7 +11665,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11681,7 +11681,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11689,7 +11689,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11705,7 +11705,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11713,7 +11713,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11729,7 +11729,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11737,7 +11737,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11753,7 +11753,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11761,7 +11761,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11777,7 +11777,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11785,7 +11785,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11801,7 +11801,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11809,7 +11809,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11825,7 +11825,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11833,7 +11833,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11849,7 +11849,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11857,7 +11857,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11873,7 +11873,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11881,7 +11881,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11897,7 +11897,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11905,7 +11905,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11921,7 +11921,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11929,7 +11929,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11945,7 +11945,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11953,7 +11953,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11969,7 +11969,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11977,7 +11977,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11993,7 +11993,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -12001,7 +12001,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -12017,7 +12017,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -12025,7 +12025,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -12041,7 +12041,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -12049,7 +12049,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -12065,7 +12065,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -12073,7 +12073,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -12089,7 +12089,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -12097,7 +12097,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -12113,7 +12113,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -12121,7 +12121,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -12137,7 +12137,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -12145,7 +12145,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -12161,7 +12161,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -12169,7 +12169,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -12185,7 +12185,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -12193,7 +12193,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -12209,7 +12209,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -12217,7 +12217,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -12233,7 +12233,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -12241,7 +12241,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -12257,7 +12257,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -12265,7 +12265,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -12281,7 +12281,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -12289,7 +12289,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -12305,7 +12305,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -12313,7 +12313,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -12329,7 +12329,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -12337,7 +12337,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -16990,7 +16990,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -16998,7 +16998,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -17014,7 +17014,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -17022,7 +17022,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -17038,7 +17038,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -17046,7 +17046,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -17062,7 +17062,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -17070,7 +17070,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -17086,7 +17086,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -17094,7 +17094,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -17110,7 +17110,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -17118,7 +17118,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -17134,7 +17134,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -17142,7 +17142,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -17158,7 +17158,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -17166,7 +17166,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -17182,7 +17182,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -17190,7 +17190,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -17206,7 +17206,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -17214,7 +17214,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -17230,7 +17230,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -17238,7 +17238,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -17254,7 +17254,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -17262,7 +17262,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -17278,7 +17278,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -17286,7 +17286,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -17302,7 +17302,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -17310,7 +17310,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -17326,7 +17326,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -17334,7 +17334,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -17350,7 +17350,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -17358,7 +17358,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -17374,7 +17374,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -17382,7 +17382,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -17398,7 +17398,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -17406,7 +17406,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -17422,7 +17422,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -17430,7 +17430,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -17446,7 +17446,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -17454,7 +17454,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -17470,7 +17470,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -17478,7 +17478,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -17494,7 +17494,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -17502,7 +17502,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -17518,7 +17518,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -17526,7 +17526,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -17542,7 +17542,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -17550,7 +17550,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -17566,7 +17566,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -17574,7 +17574,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -17590,7 +17590,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -17598,7 +17598,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -17614,7 +17614,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -17622,7 +17622,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -17638,7 +17638,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -17646,7 +17646,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -17662,7 +17662,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -17670,7 +17670,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -17686,7 +17686,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -17694,7 +17694,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -17710,7 +17710,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -17718,7 +17718,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -17734,7 +17734,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -17742,7 +17742,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -17758,7 +17758,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -17766,7 +17766,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -17782,7 +17782,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -17790,7 +17790,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -17806,7 +17806,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -17814,7 +17814,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -17830,7 +17830,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -17838,7 +17838,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -17854,7 +17854,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -17862,7 +17862,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -17878,7 +17878,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -17886,7 +17886,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -17902,7 +17902,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -17910,7 +17910,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -17926,7 +17926,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -17934,7 +17934,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -17950,7 +17950,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -17958,7 +17958,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -17974,7 +17974,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -17982,7 +17982,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -17998,7 +17998,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -18006,7 +18006,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -18022,7 +18022,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -18030,7 +18030,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -18046,7 +18046,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -18054,7 +18054,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -18070,7 +18070,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -18078,7 +18078,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -18094,7 +18094,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -18102,7 +18102,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -18118,7 +18118,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -18126,7 +18126,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -18142,7 +18142,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -18150,7 +18150,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -18166,7 +18166,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -18174,7 +18174,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -18190,7 +18190,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -18198,7 +18198,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -18214,7 +18214,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -18222,7 +18222,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -18238,7 +18238,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -18246,7 +18246,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -18262,7 +18262,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -18270,7 +18270,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -18286,7 +18286,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -18294,7 +18294,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -18310,7 +18310,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -18318,7 +18318,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -18334,7 +18334,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -18342,7 +18342,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -18358,7 +18358,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -18366,7 +18366,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -18382,7 +18382,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -18390,7 +18390,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -18406,7 +18406,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -18414,7 +18414,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -18430,7 +18430,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -18438,7 +18438,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -18454,7 +18454,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -18462,7 +18462,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -18478,7 +18478,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -18486,7 +18486,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -18502,7 +18502,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -18510,7 +18510,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,

Modified: sandbox/SOC/2009/unicode/libs/unicode/src/ucd/uni_ucd_interface_impl_data_4.ipp
==============================================================================
--- sandbox/SOC/2009/unicode/libs/unicode/src/ucd/uni_ucd_interface_impl_data_4.ipp (original)
+++ sandbox/SOC/2009/unicode/libs/unicode/src/ucd/uni_ucd_interface_impl_data_4.ipp 2009-06-04 12:19:56 EDT (Thu, 04 Jun 2009)
@@ -64186,7 +64186,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -64194,7 +64194,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -64210,7 +64210,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -64218,7 +64218,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -64234,7 +64234,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -64242,7 +64242,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -64258,7 +64258,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -64266,7 +64266,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -64282,7 +64282,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -64290,7 +64290,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -64306,7 +64306,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -64314,7 +64314,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -64330,7 +64330,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -64338,7 +64338,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -64354,7 +64354,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -64362,7 +64362,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -64378,7 +64378,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -64386,7 +64386,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -64402,7 +64402,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -64410,7 +64410,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -64426,7 +64426,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -64434,7 +64434,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -64450,7 +64450,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -64458,7 +64458,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -64474,7 +64474,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -64482,7 +64482,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -64498,7 +64498,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -64506,7 +64506,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -64522,7 +64522,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -64530,7 +64530,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -64546,7 +64546,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -64554,7 +64554,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,

Modified: sandbox/SOC/2009/unicode/libs/unicode/src/ucd/uni_ucd_interface_impl_data_5.ipp
==============================================================================
--- sandbox/SOC/2009/unicode/libs/unicode/src/ucd/uni_ucd_interface_impl_data_5.ipp (original)
+++ sandbox/SOC/2009/unicode/libs/unicode/src/ucd/uni_ucd_interface_impl_data_5.ipp 2009-06-04 12:19:56 EDT (Thu, 04 Jun 2009)
@@ -57942,7 +57942,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -57950,7 +57950,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -57966,7 +57966,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -57974,7 +57974,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -57990,7 +57990,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -57998,7 +57998,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58014,7 +58014,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58022,7 +58022,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58038,7 +58038,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58046,7 +58046,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58062,7 +58062,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58070,7 +58070,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58086,7 +58086,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58094,7 +58094,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58110,7 +58110,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58118,7 +58118,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58134,7 +58134,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58142,7 +58142,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58158,7 +58158,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58166,7 +58166,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58182,7 +58182,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58190,7 +58190,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58206,7 +58206,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58214,7 +58214,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58230,7 +58230,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58238,7 +58238,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58254,7 +58254,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58262,7 +58262,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58278,7 +58278,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58286,7 +58286,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58302,7 +58302,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58310,7 +58310,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58326,7 +58326,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58334,7 +58334,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58350,7 +58350,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58358,7 +58358,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58374,7 +58374,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58382,7 +58382,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58398,7 +58398,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58406,7 +58406,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58422,7 +58422,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58430,7 +58430,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58446,7 +58446,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58454,7 +58454,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58470,7 +58470,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58478,7 +58478,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58494,7 +58494,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58502,7 +58502,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58518,7 +58518,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58526,7 +58526,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58542,7 +58542,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58550,7 +58550,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58566,7 +58566,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58574,7 +58574,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58590,7 +58590,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58598,7 +58598,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58614,7 +58614,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58622,7 +58622,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58638,7 +58638,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58646,7 +58646,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58662,7 +58662,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58670,7 +58670,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58686,7 +58686,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58694,7 +58694,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58710,7 +58710,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58718,7 +58718,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58734,7 +58734,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58742,7 +58742,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58758,7 +58758,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58766,7 +58766,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58782,7 +58782,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58790,7 +58790,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58806,7 +58806,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58814,7 +58814,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58830,7 +58830,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58838,7 +58838,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58854,7 +58854,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58862,7 +58862,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58878,7 +58878,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58886,7 +58886,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58902,7 +58902,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58910,7 +58910,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58926,7 +58926,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58934,7 +58934,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58950,7 +58950,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58958,7 +58958,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58974,7 +58974,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58982,7 +58982,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58998,7 +58998,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -59006,7 +59006,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -59022,7 +59022,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -59030,7 +59030,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -59046,7 +59046,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -59054,7 +59054,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -59070,7 +59070,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -59078,7 +59078,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -69114,7 +69114,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -69122,7 +69122,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -69138,7 +69138,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -69146,7 +69146,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -69162,7 +69162,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -69170,7 +69170,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -69186,7 +69186,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -69194,7 +69194,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -69210,7 +69210,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -69218,7 +69218,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -69234,7 +69234,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -69242,7 +69242,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -69258,7 +69258,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -69266,7 +69266,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -69282,7 +69282,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -69290,7 +69290,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -69306,7 +69306,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -69314,7 +69314,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -69330,7 +69330,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -69338,7 +69338,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -69354,7 +69354,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -69362,7 +69362,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -69378,7 +69378,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -69386,7 +69386,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -69402,7 +69402,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -69410,7 +69410,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -69426,7 +69426,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -69434,7 +69434,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -69450,7 +69450,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -69458,7 +69458,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -69474,7 +69474,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -69482,7 +69482,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -69498,7 +69498,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -69506,7 +69506,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -69522,7 +69522,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -69530,7 +69530,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -69546,7 +69546,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -69554,7 +69554,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -69570,7 +69570,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -69578,7 +69578,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -69594,7 +69594,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -69602,7 +69602,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -69618,7 +69618,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -69626,7 +69626,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -69642,7 +69642,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -69650,7 +69650,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -69666,7 +69666,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -69674,7 +69674,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -69690,7 +69690,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -69698,7 +69698,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -69714,7 +69714,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -69722,7 +69722,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -69738,7 +69738,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -69746,7 +69746,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -69762,7 +69762,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -69770,7 +69770,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -69786,7 +69786,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -69794,7 +69794,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -69810,7 +69810,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -69818,7 +69818,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -69834,7 +69834,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -69842,7 +69842,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -69858,7 +69858,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -69866,7 +69866,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -69882,7 +69882,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -69890,7 +69890,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -69906,7 +69906,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -69914,7 +69914,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -69930,7 +69930,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -69938,7 +69938,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -69954,7 +69954,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -69962,7 +69962,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -69978,7 +69978,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -69986,7 +69986,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -70002,7 +70002,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -70010,7 +70010,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -70026,7 +70026,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -70034,7 +70034,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -70050,7 +70050,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -70058,7 +70058,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -70074,7 +70074,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -70082,7 +70082,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -70098,7 +70098,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -70106,7 +70106,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -70122,7 +70122,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -70130,7 +70130,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -70146,7 +70146,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -70154,7 +70154,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -70170,7 +70170,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -70178,7 +70178,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -70194,7 +70194,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -70202,7 +70202,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -70218,7 +70218,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -70226,7 +70226,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -70242,7 +70242,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -70250,7 +70250,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -70266,7 +70266,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -70274,7 +70274,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -70290,7 +70290,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -70298,7 +70298,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -70314,7 +70314,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -70322,7 +70322,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -70338,7 +70338,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -70346,7 +70346,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -70362,7 +70362,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -70370,7 +70370,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -70386,7 +70386,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -70394,7 +70394,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -70410,7 +70410,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -70418,7 +70418,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -70434,7 +70434,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -70442,7 +70442,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -70458,7 +70458,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -70466,7 +70466,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -70482,7 +70482,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -70490,7 +70490,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -70506,7 +70506,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -70514,7 +70514,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -70530,7 +70530,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -70538,7 +70538,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -70554,7 +70554,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -70562,7 +70562,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -70578,7 +70578,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -70586,7 +70586,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -70602,7 +70602,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -70610,7 +70610,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -70626,7 +70626,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -70634,7 +70634,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -70650,7 +70650,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -70658,7 +70658,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -70674,7 +70674,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -70682,7 +70682,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -70698,7 +70698,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -70706,7 +70706,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -70722,7 +70722,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -70730,7 +70730,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -70746,7 +70746,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -70754,7 +70754,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -70770,7 +70770,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -70778,7 +70778,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -70794,7 +70794,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -70802,7 +70802,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -70818,7 +70818,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -70826,7 +70826,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -70842,7 +70842,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -70850,7 +70850,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -70866,7 +70866,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -70874,7 +70874,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -70890,7 +70890,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -70898,7 +70898,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -70914,7 +70914,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -70922,7 +70922,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -70938,7 +70938,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -70946,7 +70946,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -70962,7 +70962,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -70970,7 +70970,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -70986,7 +70986,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -70994,7 +70994,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -71010,7 +71010,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -71018,7 +71018,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -71034,7 +71034,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -71042,7 +71042,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -71058,7 +71058,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -71066,7 +71066,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -71082,7 +71082,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -71090,7 +71090,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -71106,7 +71106,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -71114,7 +71114,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -71130,7 +71130,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -71138,7 +71138,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -71154,7 +71154,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -71162,7 +71162,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -71178,7 +71178,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -71186,7 +71186,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -71202,7 +71202,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -71210,7 +71210,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -71226,7 +71226,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -71234,7 +71234,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -71250,7 +71250,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -71258,7 +71258,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -71274,7 +71274,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -71282,7 +71282,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -71298,7 +71298,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -71306,7 +71306,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -71322,7 +71322,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -71330,7 +71330,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -71346,7 +71346,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -71354,7 +71354,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -71370,7 +71370,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -71378,7 +71378,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -71394,7 +71394,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -71402,7 +71402,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,

Modified: sandbox/SOC/2009/unicode/libs/unicode/src/ucd/uni_ucd_interface_impl_data_6.ipp
==============================================================================
--- sandbox/SOC/2009/unicode/libs/unicode/src/ucd/uni_ucd_interface_impl_data_6.ipp (original)
+++ sandbox/SOC/2009/unicode/libs/unicode/src/ucd/uni_ucd_interface_impl_data_6.ipp 2009-06-04 12:19:56 EDT (Thu, 04 Jun 2009)
@@ -4271,7 +4271,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -4279,7 +4279,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -4295,7 +4295,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -4303,7 +4303,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -4319,7 +4319,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -4327,7 +4327,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -4343,7 +4343,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -4351,7 +4351,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -4367,7 +4367,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -4375,7 +4375,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -4391,7 +4391,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -4399,7 +4399,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -4415,7 +4415,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -4423,7 +4423,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -4439,7 +4439,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -4447,7 +4447,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -4463,7 +4463,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -4471,7 +4471,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -4487,7 +4487,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -4495,7 +4495,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -4511,7 +4511,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -4519,7 +4519,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -4535,7 +4535,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -4543,7 +4543,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -4559,7 +4559,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -4567,7 +4567,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -4583,7 +4583,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -4591,7 +4591,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -4607,7 +4607,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -4615,7 +4615,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -4631,7 +4631,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -4639,7 +4639,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -8504,7 +8504,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -8512,7 +8512,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -8528,7 +8528,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -8536,7 +8536,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -8552,7 +8552,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -8560,7 +8560,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -8576,7 +8576,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -8584,7 +8584,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -8600,7 +8600,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -8608,7 +8608,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -8624,7 +8624,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -8632,7 +8632,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -8648,7 +8648,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -8656,7 +8656,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -8672,7 +8672,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -8680,7 +8680,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -8696,7 +8696,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -8704,7 +8704,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -8720,7 +8720,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -8728,7 +8728,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -8744,7 +8744,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -8752,7 +8752,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -8768,7 +8768,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -8776,7 +8776,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -8792,7 +8792,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -8800,7 +8800,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -8816,7 +8816,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -8824,7 +8824,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -8840,7 +8840,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -8848,7 +8848,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -8864,7 +8864,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -8872,7 +8872,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -8888,7 +8888,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -8896,7 +8896,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -8912,7 +8912,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -8920,7 +8920,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -8936,7 +8936,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -8944,7 +8944,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -8960,7 +8960,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -8968,7 +8968,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -8984,7 +8984,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -8992,7 +8992,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -9008,7 +9008,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -9016,7 +9016,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -9032,7 +9032,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -9040,7 +9040,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -9056,7 +9056,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -9064,7 +9064,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -9080,7 +9080,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -9088,7 +9088,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -9104,7 +9104,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -9112,7 +9112,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -9128,7 +9128,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -9136,7 +9136,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -9152,7 +9152,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -9160,7 +9160,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -9176,7 +9176,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -9184,7 +9184,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -9200,7 +9200,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -9208,7 +9208,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -9224,7 +9224,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -9232,7 +9232,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -9248,7 +9248,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -9256,7 +9256,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11585,7 +11585,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11593,7 +11593,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11609,7 +11609,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11617,7 +11617,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11633,7 +11633,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11641,7 +11641,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11657,7 +11657,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11665,7 +11665,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11681,7 +11681,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11689,7 +11689,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11705,7 +11705,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11713,7 +11713,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11729,7 +11729,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11737,7 +11737,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11753,7 +11753,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11761,7 +11761,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11777,7 +11777,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11785,7 +11785,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11801,7 +11801,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11809,7 +11809,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11825,7 +11825,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11833,7 +11833,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11849,7 +11849,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11857,7 +11857,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11873,7 +11873,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11881,7 +11881,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11897,7 +11897,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11905,7 +11905,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11921,7 +11921,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11929,7 +11929,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11945,7 +11945,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11953,7 +11953,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11969,7 +11969,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -11977,7 +11977,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -11993,7 +11993,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -12001,7 +12001,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -12017,7 +12017,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -12025,7 +12025,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -12041,7 +12041,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -12049,7 +12049,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -12065,7 +12065,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -12073,7 +12073,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -12089,7 +12089,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -12097,7 +12097,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -12113,7 +12113,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -12121,7 +12121,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -12137,7 +12137,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -12145,7 +12145,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -12161,7 +12161,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -12169,7 +12169,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -12185,7 +12185,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -12193,7 +12193,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -12209,7 +12209,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -12217,7 +12217,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -12233,7 +12233,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -12241,7 +12241,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -12257,7 +12257,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -12265,7 +12265,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -12281,7 +12281,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -12289,7 +12289,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -12305,7 +12305,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -12313,7 +12313,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -12329,7 +12329,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -12337,7 +12337,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -14666,7 +14666,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -14674,7 +14674,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -14690,7 +14690,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -14698,7 +14698,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -14714,7 +14714,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -14722,7 +14722,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -14738,7 +14738,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -14746,7 +14746,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -14762,7 +14762,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -14770,7 +14770,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -14786,7 +14786,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -14794,7 +14794,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -14810,7 +14810,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -14818,7 +14818,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -14834,7 +14834,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -14842,7 +14842,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -14858,7 +14858,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -14866,7 +14866,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -14882,7 +14882,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -14890,7 +14890,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -14906,7 +14906,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -14914,7 +14914,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -14930,7 +14930,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -14938,7 +14938,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -14954,7 +14954,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -14962,7 +14962,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -14978,7 +14978,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -14986,7 +14986,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -15002,7 +15002,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -15010,7 +15010,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -15026,7 +15026,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -15034,7 +15034,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -15050,7 +15050,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -15058,7 +15058,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -15074,7 +15074,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -15082,7 +15082,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -15098,7 +15098,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -15106,7 +15106,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -15122,7 +15122,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -15130,7 +15130,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -15146,7 +15146,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -15154,7 +15154,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -15170,7 +15170,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -15178,7 +15178,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -15194,7 +15194,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -15202,7 +15202,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -15218,7 +15218,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -15226,7 +15226,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -15242,7 +15242,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -15250,7 +15250,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -15266,7 +15266,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -15274,7 +15274,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -15290,7 +15290,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -15298,7 +15298,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -15314,7 +15314,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -15322,7 +15322,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -15338,7 +15338,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -15346,7 +15346,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -15362,7 +15362,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -15370,7 +15370,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -15386,7 +15386,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -15394,7 +15394,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -15410,7 +15410,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -15418,7 +15418,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -38162,7 +38162,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -38170,7 +38170,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -38186,7 +38186,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -38194,7 +38194,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -38210,7 +38210,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -38218,7 +38218,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -38234,7 +38234,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -38242,7 +38242,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -38258,7 +38258,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -38266,7 +38266,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -38282,7 +38282,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -38290,7 +38290,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -38306,7 +38306,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -38314,7 +38314,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -38330,7 +38330,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -38338,7 +38338,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -38354,7 +38354,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -38362,7 +38362,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -38378,7 +38378,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -38386,7 +38386,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -38402,7 +38402,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -38410,7 +38410,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -38426,7 +38426,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -38434,7 +38434,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -38450,7 +38450,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -38458,7 +38458,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -38474,7 +38474,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -38482,7 +38482,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -38498,7 +38498,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -38506,7 +38506,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -38522,7 +38522,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -38530,7 +38530,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -38546,7 +38546,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -38554,7 +38554,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -38570,7 +38570,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -38578,7 +38578,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -38594,7 +38594,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -38602,7 +38602,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -38618,7 +38618,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -38626,7 +38626,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -38642,7 +38642,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -38650,7 +38650,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -38666,7 +38666,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -38674,7 +38674,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -38690,7 +38690,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -38698,7 +38698,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -38714,7 +38714,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -38722,7 +38722,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -38738,7 +38738,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -38746,7 +38746,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -38762,7 +38762,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -38770,7 +38770,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -38786,7 +38786,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -38794,7 +38794,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -38810,7 +38810,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -38818,7 +38818,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -38834,7 +38834,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -38842,7 +38842,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -38858,7 +38858,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -38866,7 +38866,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -38882,7 +38882,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -38890,7 +38890,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -38906,7 +38906,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -38914,7 +38914,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -38930,7 +38930,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -38938,7 +38938,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -38954,7 +38954,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -38962,7 +38962,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -38978,7 +38978,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -38986,7 +38986,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -39002,7 +39002,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -39010,7 +39010,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -39026,7 +39026,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -39034,7 +39034,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -39050,7 +39050,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -39058,7 +39058,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -39074,7 +39074,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -39082,7 +39082,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -39098,7 +39098,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -39106,7 +39106,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -39122,7 +39122,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -39130,7 +39130,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -39146,7 +39146,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -39154,7 +39154,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -39170,7 +39170,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -39178,7 +39178,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -39194,7 +39194,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -39202,7 +39202,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -39218,7 +39218,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -39226,7 +39226,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -39242,7 +39242,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -39250,7 +39250,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -39266,7 +39266,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -39274,7 +39274,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -39290,7 +39290,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -39298,7 +39298,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -39314,7 +39314,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -39322,7 +39322,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -39338,7 +39338,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -39346,7 +39346,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -39362,7 +39362,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -39370,7 +39370,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -39386,7 +39386,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -39394,7 +39394,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -39410,7 +39410,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -39418,7 +39418,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -39434,7 +39434,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -39442,7 +39442,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -39458,7 +39458,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -39466,7 +39466,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -39482,7 +39482,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -39490,7 +39490,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -39506,7 +39506,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -39514,7 +39514,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -39530,7 +39530,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -39538,7 +39538,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -39554,7 +39554,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -39562,7 +39562,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -39578,7 +39578,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -39586,7 +39586,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -39602,7 +39602,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -39610,7 +39610,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -39626,7 +39626,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -39634,7 +39634,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -39650,7 +39650,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -39658,7 +39658,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -39674,7 +39674,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -39682,7 +39682,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -39698,7 +39698,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -39706,7 +39706,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -39722,7 +39722,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -39730,7 +39730,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -39746,7 +39746,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -39754,7 +39754,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -39770,7 +39770,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -39778,7 +39778,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -39794,7 +39794,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -39802,7 +39802,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -39818,7 +39818,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -39826,7 +39826,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -39842,7 +39842,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -39850,7 +39850,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -39866,7 +39866,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -39874,7 +39874,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -39890,7 +39890,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -39898,7 +39898,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -39914,7 +39914,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -39922,7 +39922,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -39938,7 +39938,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -39946,7 +39946,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -39962,7 +39962,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -39970,7 +39970,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -39986,7 +39986,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -39994,7 +39994,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -40010,7 +40010,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -40018,7 +40018,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -40034,7 +40034,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -40042,7 +40042,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -40058,7 +40058,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -40066,7 +40066,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,

Modified: sandbox/SOC/2009/unicode/libs/unicode/src/ucd/uni_ucd_interface_impl_data_7.ipp
==============================================================================
--- sandbox/SOC/2009/unicode/libs/unicode/src/ucd/uni_ucd_interface_impl_data_7.ipp (original)
+++ sandbox/SOC/2009/unicode/libs/unicode/src/ucd/uni_ucd_interface_impl_data_7.ipp 2009-06-04 12:19:56 EDT (Thu, 04 Jun 2009)
@@ -36984,7 +36984,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -36992,7 +36992,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -37008,7 +37008,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -37016,7 +37016,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -37032,7 +37032,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -37040,7 +37040,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -37056,7 +37056,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -37064,7 +37064,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -37080,7 +37080,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -37088,7 +37088,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -37104,7 +37104,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -37112,7 +37112,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -37128,7 +37128,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -37136,7 +37136,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -37152,7 +37152,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -37160,7 +37160,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -37176,7 +37176,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -37184,7 +37184,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -37200,7 +37200,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -37208,7 +37208,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -37224,7 +37224,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -37232,7 +37232,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -37248,7 +37248,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -37256,7 +37256,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -37272,7 +37272,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -37280,7 +37280,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -37296,7 +37296,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -37304,7 +37304,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -37320,7 +37320,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -37328,7 +37328,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -37344,7 +37344,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -37352,7 +37352,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -37368,7 +37368,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -37376,7 +37376,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -37392,7 +37392,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -37400,7 +37400,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -37416,7 +37416,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -37424,7 +37424,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -37440,7 +37440,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -37448,7 +37448,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -37464,7 +37464,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -37472,7 +37472,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -37488,7 +37488,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -37496,7 +37496,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -37512,7 +37512,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -37520,7 +37520,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -37536,7 +37536,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -37544,7 +37544,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -37560,7 +37560,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -37568,7 +37568,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -37584,7 +37584,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -37592,7 +37592,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -37608,7 +37608,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -37616,7 +37616,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -37632,7 +37632,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -37640,7 +37640,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -37656,7 +37656,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -37664,7 +37664,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -37680,7 +37680,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -37688,7 +37688,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -37704,7 +37704,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -37712,7 +37712,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -37728,7 +37728,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -37736,7 +37736,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -39681,7 +39681,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -39689,7 +39689,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -39705,7 +39705,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -39713,7 +39713,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -39729,7 +39729,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -39737,7 +39737,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -39753,7 +39753,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -39761,7 +39761,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -39777,7 +39777,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -39785,7 +39785,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -39801,7 +39801,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -39809,7 +39809,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -39825,7 +39825,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -39833,7 +39833,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -39849,7 +39849,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -39857,7 +39857,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -39873,7 +39873,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -39881,7 +39881,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -39897,7 +39897,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -39905,7 +39905,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -39921,7 +39921,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -39929,7 +39929,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -39945,7 +39945,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -39953,7 +39953,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -39969,7 +39969,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -39977,7 +39977,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -39993,7 +39993,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -40001,7 +40001,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -40017,7 +40017,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -40025,7 +40025,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -40041,7 +40041,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -40049,7 +40049,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -40065,7 +40065,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -40073,7 +40073,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -40089,7 +40089,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -40097,7 +40097,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -40113,7 +40113,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -40121,7 +40121,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -40137,7 +40137,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -40145,7 +40145,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -40161,7 +40161,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -40169,7 +40169,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -40185,7 +40185,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -40193,7 +40193,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -40209,7 +40209,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -40217,7 +40217,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -40233,7 +40233,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -40241,7 +40241,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -40257,7 +40257,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -40265,7 +40265,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -40281,7 +40281,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -40289,7 +40289,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -40305,7 +40305,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -40313,7 +40313,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -40329,7 +40329,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -40337,7 +40337,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -40353,7 +40353,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -40361,7 +40361,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -40377,7 +40377,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -40385,7 +40385,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -40401,7 +40401,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -40409,7 +40409,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -40425,7 +40425,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -40433,7 +40433,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -40449,7 +40449,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -40457,7 +40457,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -40473,7 +40473,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -40481,7 +40481,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -40497,7 +40497,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -40505,7 +40505,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -40521,7 +40521,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -40529,7 +40529,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -40545,7 +40545,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -40553,7 +40553,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -40569,7 +40569,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -40577,7 +40577,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -40593,7 +40593,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -40601,7 +40601,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -40617,7 +40617,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -40625,7 +40625,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -40641,7 +40641,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -40649,7 +40649,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -40665,7 +40665,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -40673,7 +40673,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -40689,7 +40689,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -40697,7 +40697,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -40713,7 +40713,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -40721,7 +40721,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -40737,7 +40737,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -40745,7 +40745,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -40761,7 +40761,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -40769,7 +40769,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -40785,7 +40785,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -40793,7 +40793,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -40809,7 +40809,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -40817,7 +40817,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -43146,7 +43146,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -43154,7 +43154,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -43170,7 +43170,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -43178,7 +43178,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -43194,7 +43194,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -43202,7 +43202,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -43218,7 +43218,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -43226,7 +43226,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -43242,7 +43242,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -43250,7 +43250,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -43266,7 +43266,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -43274,7 +43274,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -43290,7 +43290,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -43298,7 +43298,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -43314,7 +43314,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -43322,7 +43322,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -43338,7 +43338,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -43346,7 +43346,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -43362,7 +43362,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -43370,7 +43370,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -43386,7 +43386,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -43394,7 +43394,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -43410,7 +43410,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -43418,7 +43418,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -43434,7 +43434,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -43442,7 +43442,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -43458,7 +43458,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -43466,7 +43466,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -43482,7 +43482,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -43490,7 +43490,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -43506,7 +43506,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -43514,7 +43514,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -43530,7 +43530,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -43538,7 +43538,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -43554,7 +43554,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -43562,7 +43562,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -43578,7 +43578,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -43586,7 +43586,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -43602,7 +43602,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -43610,7 +43610,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -43626,7 +43626,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -43634,7 +43634,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -43650,7 +43650,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -43658,7 +43658,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -43674,7 +43674,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -43682,7 +43682,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -43698,7 +43698,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -43706,7 +43706,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -43722,7 +43722,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -43730,7 +43730,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -43746,7 +43746,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -43754,7 +43754,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -43770,7 +43770,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -43778,7 +43778,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -43794,7 +43794,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -43802,7 +43802,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -43818,7 +43818,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -43826,7 +43826,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -43842,7 +43842,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -43850,7 +43850,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -43866,7 +43866,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -43874,7 +43874,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -43890,7 +43890,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -43898,7 +43898,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -48156,7 +48156,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -48164,7 +48164,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -48180,7 +48180,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -48188,7 +48188,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -48204,7 +48204,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -48212,7 +48212,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -48228,7 +48228,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -48236,7 +48236,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -48252,7 +48252,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -48260,7 +48260,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -48276,7 +48276,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -48284,7 +48284,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -48300,7 +48300,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -48308,7 +48308,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -48324,7 +48324,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -48332,7 +48332,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -48348,7 +48348,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -48356,7 +48356,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -48372,7 +48372,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -48380,7 +48380,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -48396,7 +48396,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -48404,7 +48404,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -48420,7 +48420,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -48428,7 +48428,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -48444,7 +48444,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -48452,7 +48452,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -48468,7 +48468,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -48476,7 +48476,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -48492,7 +48492,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -48500,7 +48500,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -48516,7 +48516,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -48524,7 +48524,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -48540,7 +48540,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -48548,7 +48548,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -48564,7 +48564,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -48572,7 +48572,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -48588,7 +48588,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -48596,7 +48596,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -48612,7 +48612,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -48620,7 +48620,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -48636,7 +48636,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -48644,7 +48644,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -48660,7 +48660,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -48668,7 +48668,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -48684,7 +48684,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -48692,7 +48692,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -48708,7 +48708,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -48716,7 +48716,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -48732,7 +48732,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -48740,7 +48740,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -48756,7 +48756,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -48764,7 +48764,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -48780,7 +48780,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -48788,7 +48788,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -48804,7 +48804,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -48812,7 +48812,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -48828,7 +48828,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -48836,7 +48836,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -48852,7 +48852,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -48860,7 +48860,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -48876,7 +48876,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -48884,7 +48884,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -48900,7 +48900,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -48908,7 +48908,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -48924,7 +48924,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -48932,7 +48932,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -48948,7 +48948,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -48956,7 +48956,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -48972,7 +48972,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -48980,7 +48980,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -48996,7 +48996,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -49004,7 +49004,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -49020,7 +49020,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -49028,7 +49028,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -49044,7 +49044,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -49052,7 +49052,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -49068,7 +49068,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -49076,7 +49076,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -49092,7 +49092,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -49100,7 +49100,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -49116,7 +49116,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -49124,7 +49124,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -49140,7 +49140,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -49148,7 +49148,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -49164,7 +49164,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -49172,7 +49172,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -49188,7 +49188,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -49196,7 +49196,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -49212,7 +49212,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -49220,7 +49220,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -49236,7 +49236,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -49244,7 +49244,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -49260,7 +49260,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -49268,7 +49268,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -49284,7 +49284,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -49292,7 +49292,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -49308,7 +49308,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -49316,7 +49316,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -49332,7 +49332,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -49340,7 +49340,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -49356,7 +49356,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -49364,7 +49364,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -49380,7 +49380,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -49388,7 +49388,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -49404,7 +49404,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -49412,7 +49412,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -49428,7 +49428,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -49436,7 +49436,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -49452,7 +49452,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -49460,7 +49460,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -49476,7 +49476,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -49484,7 +49484,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -49500,7 +49500,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -49508,7 +49508,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -49524,7 +49524,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -49532,7 +49532,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -49548,7 +49548,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -49556,7 +49556,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -49572,7 +49572,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -49580,7 +49580,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -49596,7 +49596,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -49604,7 +49604,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -49620,7 +49620,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -49628,7 +49628,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -49644,7 +49644,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -49652,7 +49652,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -49668,7 +49668,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -49676,7 +49676,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -49692,7 +49692,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -49700,7 +49700,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -49716,7 +49716,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -49724,7 +49724,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -49740,7 +49740,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -49748,7 +49748,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -49764,7 +49764,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -49772,7 +49772,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -49788,7 +49788,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -49796,7 +49796,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -49812,7 +49812,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -49820,7 +49820,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -49836,7 +49836,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -49844,7 +49844,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -49860,7 +49860,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -49868,7 +49868,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -49884,7 +49884,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -49892,7 +49892,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -49908,7 +49908,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -49916,7 +49916,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -49932,7 +49932,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -49940,7 +49940,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -49956,7 +49956,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -49964,7 +49964,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -49980,7 +49980,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -49988,7 +49988,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -50004,7 +50004,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -50012,7 +50012,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -50028,7 +50028,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -50036,7 +50036,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -50052,7 +50052,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -50060,7 +50060,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51621,7 +51621,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51629,7 +51629,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51645,7 +51645,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51653,7 +51653,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51669,7 +51669,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51677,7 +51677,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51693,7 +51693,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51701,7 +51701,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51717,7 +51717,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51725,7 +51725,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51741,7 +51741,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51749,7 +51749,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51765,7 +51765,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51773,7 +51773,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51789,7 +51789,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51797,7 +51797,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51813,7 +51813,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51821,7 +51821,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51837,7 +51837,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51845,7 +51845,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51861,7 +51861,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51869,7 +51869,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51885,7 +51885,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51893,7 +51893,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51909,7 +51909,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51917,7 +51917,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51933,7 +51933,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51941,7 +51941,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51957,7 +51957,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51965,7 +51965,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -51981,7 +51981,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -51989,7 +51989,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52005,7 +52005,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52013,7 +52013,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52029,7 +52029,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52037,7 +52037,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52053,7 +52053,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52061,7 +52061,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52077,7 +52077,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52085,7 +52085,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52101,7 +52101,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52109,7 +52109,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52125,7 +52125,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52133,7 +52133,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52149,7 +52149,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52157,7 +52157,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52173,7 +52173,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52181,7 +52181,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52197,7 +52197,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52205,7 +52205,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52221,7 +52221,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52229,7 +52229,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52245,7 +52245,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52253,7 +52253,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52269,7 +52269,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52277,7 +52277,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52293,7 +52293,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52301,7 +52301,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52317,7 +52317,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52325,7 +52325,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52341,7 +52341,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52349,7 +52349,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52365,7 +52365,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52373,7 +52373,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52389,7 +52389,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52397,7 +52397,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52413,7 +52413,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52421,7 +52421,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52437,7 +52437,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52445,7 +52445,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52461,7 +52461,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52469,7 +52469,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52485,7 +52485,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52493,7 +52493,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52509,7 +52509,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52517,7 +52517,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52533,7 +52533,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52541,7 +52541,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52557,7 +52557,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52565,7 +52565,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52581,7 +52581,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52589,7 +52589,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52605,7 +52605,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52613,7 +52613,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52629,7 +52629,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52637,7 +52637,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52653,7 +52653,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52661,7 +52661,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52677,7 +52677,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52685,7 +52685,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52701,7 +52701,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52709,7 +52709,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52725,7 +52725,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52733,7 +52733,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52749,7 +52749,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52757,7 +52757,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52773,7 +52773,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52781,7 +52781,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52797,7 +52797,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52805,7 +52805,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52821,7 +52821,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52829,7 +52829,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52845,7 +52845,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52853,7 +52853,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52869,7 +52869,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52877,7 +52877,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52893,7 +52893,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52901,7 +52901,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52917,7 +52917,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52925,7 +52925,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52941,7 +52941,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52949,7 +52949,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52965,7 +52965,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52973,7 +52973,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -52989,7 +52989,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -52997,7 +52997,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -53013,7 +53013,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -53021,7 +53021,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -53037,7 +53037,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -53045,7 +53045,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -53061,7 +53061,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -53069,7 +53069,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -53085,7 +53085,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -53093,7 +53093,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -53109,7 +53109,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -53117,7 +53117,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -53133,7 +53133,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -53141,7 +53141,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -54702,7 +54702,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -54710,7 +54710,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -54726,7 +54726,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -54734,7 +54734,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -54750,7 +54750,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -54758,7 +54758,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -54774,7 +54774,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -54782,7 +54782,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -54798,7 +54798,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -54806,7 +54806,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -54822,7 +54822,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -54830,7 +54830,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -54846,7 +54846,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -54854,7 +54854,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -54870,7 +54870,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -54878,7 +54878,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -54894,7 +54894,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -54902,7 +54902,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -54918,7 +54918,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -54926,7 +54926,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -54942,7 +54942,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -54950,7 +54950,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -54966,7 +54966,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -54974,7 +54974,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -54990,7 +54990,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -54998,7 +54998,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -55014,7 +55014,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -55022,7 +55022,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -55038,7 +55038,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -55046,7 +55046,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -55062,7 +55062,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -55070,7 +55070,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -55086,7 +55086,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -55094,7 +55094,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -55110,7 +55110,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -55118,7 +55118,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -55134,7 +55134,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -55142,7 +55142,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -55158,7 +55158,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -55166,7 +55166,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -55182,7 +55182,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -55190,7 +55190,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -55206,7 +55206,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -55214,7 +55214,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -55230,7 +55230,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -55238,7 +55238,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -55254,7 +55254,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -55262,7 +55262,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -55278,7 +55278,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -55286,7 +55286,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -55302,7 +55302,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -55310,7 +55310,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -55326,7 +55326,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -55334,7 +55334,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -55350,7 +55350,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -55358,7 +55358,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -55374,7 +55374,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -55382,7 +55382,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -55398,7 +55398,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -55406,7 +55406,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -55422,7 +55422,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -55430,7 +55430,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -55446,7 +55446,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -55454,7 +55454,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -55470,7 +55470,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -55478,7 +55478,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -55494,7 +55494,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -55502,7 +55502,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -55518,7 +55518,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -55526,7 +55526,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -55542,7 +55542,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -55550,7 +55550,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -55566,7 +55566,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -55574,7 +55574,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -55590,7 +55590,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -55598,7 +55598,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -55614,7 +55614,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -55622,7 +55622,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -55638,7 +55638,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -55646,7 +55646,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -55662,7 +55662,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -55670,7 +55670,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -55686,7 +55686,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -55694,7 +55694,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -55710,7 +55710,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -55718,7 +55718,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -55734,7 +55734,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -55742,7 +55742,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -55758,7 +55758,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -55766,7 +55766,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -55782,7 +55782,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -55790,7 +55790,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -55806,7 +55806,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -55814,7 +55814,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -55830,7 +55830,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -55838,7 +55838,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -55854,7 +55854,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -55862,7 +55862,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -55878,7 +55878,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -55886,7 +55886,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -55902,7 +55902,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -55910,7 +55910,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -55926,7 +55926,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -55934,7 +55934,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -55950,7 +55950,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -55958,7 +55958,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -55974,7 +55974,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -55982,7 +55982,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -55998,7 +55998,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -56006,7 +56006,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -56022,7 +56022,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -56030,7 +56030,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -56046,7 +56046,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -56054,7 +56054,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -56070,7 +56070,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -56078,7 +56078,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -56094,7 +56094,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -56102,7 +56102,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -56118,7 +56118,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -56126,7 +56126,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -56142,7 +56142,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -56150,7 +56150,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -56166,7 +56166,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -56174,7 +56174,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -56190,7 +56190,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -56198,7 +56198,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -56214,7 +56214,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -56222,7 +56222,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58551,7 +58551,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58559,7 +58559,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58575,7 +58575,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58583,7 +58583,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58599,7 +58599,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58607,7 +58607,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58623,7 +58623,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58631,7 +58631,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58647,7 +58647,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58655,7 +58655,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58671,7 +58671,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58679,7 +58679,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58695,7 +58695,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58703,7 +58703,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58719,7 +58719,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58727,7 +58727,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58743,7 +58743,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58751,7 +58751,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58767,7 +58767,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58775,7 +58775,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58791,7 +58791,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58799,7 +58799,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58815,7 +58815,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58823,7 +58823,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58839,7 +58839,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58847,7 +58847,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58863,7 +58863,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58871,7 +58871,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58887,7 +58887,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58895,7 +58895,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58911,7 +58911,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58919,7 +58919,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58935,7 +58935,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58943,7 +58943,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58959,7 +58959,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58967,7 +58967,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58983,7 +58983,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58991,7 +58991,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -59007,7 +59007,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -59015,7 +59015,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -59031,7 +59031,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -59039,7 +59039,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -59055,7 +59055,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -59063,7 +59063,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -59079,7 +59079,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -59087,7 +59087,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -59103,7 +59103,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -59111,7 +59111,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -59127,7 +59127,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -59135,7 +59135,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -59151,7 +59151,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -59159,7 +59159,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -59175,7 +59175,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -59183,7 +59183,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -59199,7 +59199,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -59207,7 +59207,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -59223,7 +59223,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -59231,7 +59231,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -59247,7 +59247,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -59255,7 +59255,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -59271,7 +59271,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -59279,7 +59279,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -59295,7 +59295,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -59303,7 +59303,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,

Modified: sandbox/SOC/2009/unicode/libs/unicode/src/ucd/uni_ucd_interface_impl_data_8.ipp
==============================================================================
--- sandbox/SOC/2009/unicode/libs/unicode/src/ucd/uni_ucd_interface_impl_data_8.ipp (original)
+++ sandbox/SOC/2009/unicode/libs/unicode/src/ucd/uni_ucd_interface_impl_data_8.ipp 2009-06-04 12:19:56 EDT (Thu, 04 Jun 2009)
@@ -23538,7 +23538,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -23546,7 +23546,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -23562,7 +23562,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -23570,7 +23570,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -23586,7 +23586,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -23594,7 +23594,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -23610,7 +23610,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -23618,7 +23618,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -23634,7 +23634,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -23642,7 +23642,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -23658,7 +23658,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -23666,7 +23666,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -23682,7 +23682,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -23690,7 +23690,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -23706,7 +23706,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -23714,7 +23714,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -23730,7 +23730,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -23738,7 +23738,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -23754,7 +23754,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -23762,7 +23762,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -23778,7 +23778,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -23786,7 +23786,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -23802,7 +23802,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -23810,7 +23810,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -23826,7 +23826,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -23834,7 +23834,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -23850,7 +23850,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -23858,7 +23858,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -23874,7 +23874,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -23882,7 +23882,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -23898,7 +23898,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -23906,7 +23906,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -23922,7 +23922,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -23930,7 +23930,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -23946,7 +23946,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -23954,7 +23954,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -23970,7 +23970,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -23978,7 +23978,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -23994,7 +23994,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -24002,7 +24002,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -24018,7 +24018,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -24026,7 +24026,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -24042,7 +24042,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -24050,7 +24050,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -24066,7 +24066,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -24074,7 +24074,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -24090,7 +24090,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -24098,7 +24098,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -24114,7 +24114,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -24122,7 +24122,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -24138,7 +24138,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -24146,7 +24146,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -24162,7 +24162,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -24170,7 +24170,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -24186,7 +24186,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -24194,7 +24194,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -24210,7 +24210,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -24218,7 +24218,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -24234,7 +24234,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -24242,7 +24242,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -24258,7 +24258,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -24266,7 +24266,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -24282,7 +24282,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -24290,7 +24290,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -24306,7 +24306,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -24314,7 +24314,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -24330,7 +24330,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -24338,7 +24338,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -24354,7 +24354,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -24362,7 +24362,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -24378,7 +24378,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -24386,7 +24386,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -24402,7 +24402,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -24410,7 +24410,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -24426,7 +24426,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -24434,7 +24434,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -24450,7 +24450,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -24458,7 +24458,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -24474,7 +24474,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -24482,7 +24482,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -24498,7 +24498,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -24506,7 +24506,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -24522,7 +24522,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -24530,7 +24530,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -24546,7 +24546,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -24554,7 +24554,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -24570,7 +24570,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -24578,7 +24578,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -24594,7 +24594,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -24602,7 +24602,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -24618,7 +24618,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -24626,7 +24626,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -24642,7 +24642,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -24650,7 +24650,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -24666,7 +24666,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -24674,7 +24674,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -57273,7 +57273,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -57281,7 +57281,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -57297,7 +57297,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -57305,7 +57305,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -57321,7 +57321,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -57329,7 +57329,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -57345,7 +57345,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -57353,7 +57353,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -57369,7 +57369,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -57377,7 +57377,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -57393,7 +57393,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -57401,7 +57401,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -57417,7 +57417,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -57425,7 +57425,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -57441,7 +57441,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -57449,7 +57449,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -57465,7 +57465,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -57473,7 +57473,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -57489,7 +57489,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -57497,7 +57497,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -57513,7 +57513,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -57521,7 +57521,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -57537,7 +57537,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -57545,7 +57545,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -57561,7 +57561,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -57569,7 +57569,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -57585,7 +57585,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -57593,7 +57593,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -57609,7 +57609,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -57617,7 +57617,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -57633,7 +57633,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -57641,7 +57641,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -57657,7 +57657,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -57665,7 +57665,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -57681,7 +57681,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -57689,7 +57689,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -57705,7 +57705,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -57713,7 +57713,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -57729,7 +57729,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -57737,7 +57737,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -57753,7 +57753,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -57761,7 +57761,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -57777,7 +57777,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -57785,7 +57785,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -57801,7 +57801,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -57809,7 +57809,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -57825,7 +57825,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -57833,7 +57833,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -57849,7 +57849,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -57857,7 +57857,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -57873,7 +57873,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -57881,7 +57881,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -57897,7 +57897,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -57905,7 +57905,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -57921,7 +57921,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -57929,7 +57929,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -57945,7 +57945,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -57953,7 +57953,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -57969,7 +57969,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -57977,7 +57977,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -57993,7 +57993,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58001,7 +58001,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58017,7 +58017,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58025,7 +58025,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58041,7 +58041,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58049,7 +58049,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58065,7 +58065,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58073,7 +58073,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58089,7 +58089,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58097,7 +58097,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58113,7 +58113,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58121,7 +58121,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58137,7 +58137,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58145,7 +58145,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58161,7 +58161,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58169,7 +58169,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58185,7 +58185,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58193,7 +58193,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58209,7 +58209,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58217,7 +58217,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58233,7 +58233,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58241,7 +58241,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58257,7 +58257,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58265,7 +58265,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58281,7 +58281,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58289,7 +58289,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58305,7 +58305,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58313,7 +58313,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58329,7 +58329,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58337,7 +58337,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58353,7 +58353,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58361,7 +58361,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58377,7 +58377,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58385,7 +58385,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58401,7 +58401,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58409,7 +58409,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58425,7 +58425,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58433,7 +58433,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58449,7 +58449,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58457,7 +58457,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58473,7 +58473,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58481,7 +58481,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58497,7 +58497,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58505,7 +58505,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58521,7 +58521,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58529,7 +58529,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58545,7 +58545,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58553,7 +58553,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58569,7 +58569,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58577,7 +58577,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58593,7 +58593,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58601,7 +58601,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58617,7 +58617,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58625,7 +58625,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58641,7 +58641,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58649,7 +58649,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58665,7 +58665,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58673,7 +58673,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58689,7 +58689,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58697,7 +58697,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58713,7 +58713,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58721,7 +58721,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58737,7 +58737,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58745,7 +58745,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58761,7 +58761,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58769,7 +58769,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58785,7 +58785,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58793,7 +58793,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58809,7 +58809,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58817,7 +58817,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58833,7 +58833,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58841,7 +58841,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58857,7 +58857,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58865,7 +58865,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58881,7 +58881,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58889,7 +58889,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58905,7 +58905,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58913,7 +58913,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58929,7 +58929,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58937,7 +58937,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58953,7 +58953,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58961,7 +58961,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -58977,7 +58977,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -58985,7 +58985,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -59001,7 +59001,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -59009,7 +59009,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -59025,7 +59025,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -59033,7 +59033,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -59049,7 +59049,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -59057,7 +59057,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -59073,7 +59073,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -59081,7 +59081,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -59097,7 +59097,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -59105,7 +59105,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -59121,7 +59121,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -59129,7 +59129,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -59145,7 +59145,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -59153,7 +59153,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -59169,7 +59169,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -59177,7 +59177,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -59193,7 +59193,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -59201,7 +59201,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -59217,7 +59217,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -59225,7 +59225,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -59241,7 +59241,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -59249,7 +59249,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -59265,7 +59265,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -59273,7 +59273,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -59289,7 +59289,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -59297,7 +59297,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -59313,7 +59313,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -59321,7 +59321,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -59337,7 +59337,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -59345,7 +59345,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -59361,7 +59361,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -59369,7 +59369,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -59385,7 +59385,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -59393,7 +59393,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -59409,7 +59409,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -59417,7 +59417,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -59433,7 +59433,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -59441,7 +59441,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -59457,7 +59457,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -59465,7 +59465,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -59481,7 +59481,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -59489,7 +59489,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -59505,7 +59505,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -59513,7 +59513,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -59529,7 +59529,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -59537,7 +59537,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -59553,7 +59553,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -59561,7 +59561,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -64971,7 +64971,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -64979,7 +64979,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -64995,7 +64995,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -65003,7 +65003,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -65019,7 +65019,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -65027,7 +65027,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -65043,7 +65043,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -65051,7 +65051,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -65067,7 +65067,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -65075,7 +65075,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -65091,7 +65091,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -65099,7 +65099,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -65115,7 +65115,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -65123,7 +65123,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -65139,7 +65139,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -65147,7 +65147,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -65163,7 +65163,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -65171,7 +65171,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -65187,7 +65187,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -65195,7 +65195,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -65211,7 +65211,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -65219,7 +65219,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -65235,7 +65235,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -65243,7 +65243,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -65259,7 +65259,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -65267,7 +65267,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -65283,7 +65283,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -65291,7 +65291,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -65307,7 +65307,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -65315,7 +65315,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -65331,7 +65331,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -65339,7 +65339,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -65355,7 +65355,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -65363,7 +65363,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -65379,7 +65379,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -65387,7 +65387,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -65403,7 +65403,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -65411,7 +65411,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -65427,7 +65427,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -65435,7 +65435,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -65451,7 +65451,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -65459,7 +65459,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -65475,7 +65475,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -65483,7 +65483,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -65499,7 +65499,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -65507,7 +65507,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -65523,7 +65523,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -65531,7 +65531,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -65547,7 +65547,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -65555,7 +65555,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -65571,7 +65571,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -65579,7 +65579,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -65595,7 +65595,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -65603,7 +65603,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -65619,7 +65619,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -65627,7 +65627,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -65643,7 +65643,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -65651,7 +65651,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -65667,7 +65667,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -65675,7 +65675,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -65691,7 +65691,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -65699,7 +65699,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -65715,7 +65715,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -65723,7 +65723,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,

Modified: sandbox/SOC/2009/unicode/libs/unicode/src/ucd/uni_ucd_interface_impl_data_9.ipp
==============================================================================
--- sandbox/SOC/2009/unicode/libs/unicode/src/ucd/uni_ucd_interface_impl_data_9.ipp (original)
+++ sandbox/SOC/2009/unicode/libs/unicode/src/ucd/uni_ucd_interface_impl_data_9.ipp 2009-06-04 12:19:56 EDT (Thu, 04 Jun 2009)
@@ -4045,7 +4045,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -4053,7 +4053,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -4069,7 +4069,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -4077,7 +4077,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -4093,7 +4093,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -4101,7 +4101,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -4117,7 +4117,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -4125,7 +4125,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -4141,7 +4141,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -4149,7 +4149,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -4165,7 +4165,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -4173,7 +4173,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -4189,7 +4189,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -4197,7 +4197,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -4213,7 +4213,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -4221,7 +4221,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -4237,7 +4237,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -4245,7 +4245,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -4261,7 +4261,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -4269,7 +4269,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -4285,7 +4285,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -4293,7 +4293,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -4309,7 +4309,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -4317,7 +4317,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -4333,7 +4333,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -4341,7 +4341,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -4357,7 +4357,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -4365,7 +4365,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -4381,7 +4381,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -4389,7 +4389,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -4405,7 +4405,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -4413,7 +4413,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -4429,7 +4429,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -4437,7 +4437,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -4453,7 +4453,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -4461,7 +4461,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -4477,7 +4477,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -4485,7 +4485,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -4501,7 +4501,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -4509,7 +4509,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -4525,7 +4525,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -4533,7 +4533,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -4549,7 +4549,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -4557,7 +4557,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -4573,7 +4573,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -4581,7 +4581,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -4597,7 +4597,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -4605,7 +4605,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -4621,7 +4621,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -4629,7 +4629,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -4645,7 +4645,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -4653,7 +4653,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -4669,7 +4669,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -4677,7 +4677,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -4693,7 +4693,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -4701,7 +4701,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -4717,7 +4717,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -4725,7 +4725,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -4741,7 +4741,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -4749,7 +4749,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -4765,7 +4765,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -4773,7 +4773,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -4789,7 +4789,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -4797,7 +4797,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -4813,7 +4813,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -4821,7 +4821,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -4837,7 +4837,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -4845,7 +4845,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -4861,7 +4861,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -4869,7 +4869,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -4885,7 +4885,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -4893,7 +4893,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -4909,7 +4909,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -4917,7 +4917,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -4933,7 +4933,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -4941,7 +4941,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -4957,7 +4957,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -4965,7 +4965,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -4981,7 +4981,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -4989,7 +4989,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -5005,7 +5005,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -5013,7 +5013,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -5029,7 +5029,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -5037,7 +5037,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -5053,7 +5053,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -5061,7 +5061,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -5077,7 +5077,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -5085,7 +5085,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -5101,7 +5101,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -5109,7 +5109,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -5125,7 +5125,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -5133,7 +5133,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -5149,7 +5149,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -5157,7 +5157,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -5173,7 +5173,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -5181,7 +5181,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -5197,7 +5197,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -5205,7 +5205,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -5221,7 +5221,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -5229,7 +5229,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -5245,7 +5245,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -5253,7 +5253,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -5269,7 +5269,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -5277,7 +5277,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -5293,7 +5293,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -5301,7 +5301,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -5317,7 +5317,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -5325,7 +5325,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -5341,7 +5341,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -5349,7 +5349,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -5365,7 +5365,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -5373,7 +5373,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -5389,7 +5389,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -5397,7 +5397,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -5413,7 +5413,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -5421,7 +5421,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -5437,7 +5437,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -5445,7 +5445,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -5461,7 +5461,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -5469,7 +5469,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -5485,7 +5485,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -5493,7 +5493,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -5509,7 +5509,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -5517,7 +5517,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -5533,7 +5533,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -5541,7 +5541,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -5557,7 +5557,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -5565,7 +5565,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -5581,7 +5581,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -5589,7 +5589,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -5605,7 +5605,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -5613,7 +5613,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -5629,7 +5629,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -5637,7 +5637,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -5653,7 +5653,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -5661,7 +5661,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -5677,7 +5677,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -5685,7 +5685,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -5701,7 +5701,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -5709,7 +5709,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -5725,7 +5725,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -5733,7 +5733,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -5749,7 +5749,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -5757,7 +5757,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -5773,7 +5773,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -5781,7 +5781,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -5797,7 +5797,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -5805,7 +5805,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -5821,7 +5821,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -5829,7 +5829,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -5845,7 +5845,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -5853,7 +5853,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -5869,7 +5869,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -5877,7 +5877,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -5893,7 +5893,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -5901,7 +5901,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -5917,7 +5917,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -5925,7 +5925,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -5941,7 +5941,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -5949,7 +5949,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -5965,7 +5965,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -5973,7 +5973,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -5989,7 +5989,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -5997,7 +5997,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -6013,7 +6013,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -6021,7 +6021,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -6037,7 +6037,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -6045,7 +6045,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -6061,7 +6061,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -6069,7 +6069,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -6085,7 +6085,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -6093,7 +6093,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -6109,7 +6109,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -6117,7 +6117,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -6133,7 +6133,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -6141,7 +6141,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -6157,7 +6157,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -6165,7 +6165,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -6181,7 +6181,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -6189,7 +6189,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -6205,7 +6205,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -6213,7 +6213,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -6229,7 +6229,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -6237,7 +6237,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -6253,7 +6253,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -6261,7 +6261,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -6277,7 +6277,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -6285,7 +6285,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -6301,7 +6301,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -6309,7 +6309,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -6325,7 +6325,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -6333,7 +6333,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -15208,7 +15208,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -15216,7 +15216,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -15232,7 +15232,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -15240,7 +15240,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -15256,7 +15256,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -15264,7 +15264,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -15280,7 +15280,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -15288,7 +15288,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -15304,7 +15304,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -15312,7 +15312,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -15328,7 +15328,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -15336,7 +15336,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -15352,7 +15352,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -15360,7 +15360,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -15376,7 +15376,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -15384,7 +15384,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -15400,7 +15400,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -15408,7 +15408,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -15424,7 +15424,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -15432,7 +15432,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -15448,7 +15448,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -15456,7 +15456,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -15472,7 +15472,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -15480,7 +15480,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -15496,7 +15496,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -15504,7 +15504,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -15520,7 +15520,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -15528,7 +15528,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -15544,7 +15544,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -15552,7 +15552,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,
@@ -15568,7 +15568,7 @@
                         true,
                         false,
                         ucd::sort_type::default_,
- 49123,
+ 0,
                         bidi_class::strong_left_to_right,
                         decomposition_type::none,
                         break_class::unknown,
@@ -15576,7 +15576,7 @@
                         sentence_break::any,
                         grapheme_cluster_break::any,
                 },
- 18584,
+ 0,
                 0x0,
                 0x0,
                 0x0,


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk