Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r54126 - in sandbox/SOC/2009/unicode: boost/iterator boost/unicode boost/unicode/ucd libs/unicode/doc libs/unicode/example libs/unicode/src libs/unicode/src/ucd
From: loufoque_at_[hidden]
Date: 2009-06-20 11:05:50


Author: mgaunard
Date: 2009-06-20 11:05:18 EDT (Sat, 20 Jun 2009)
New Revision: 54126
URL: http://svn.boost.org/trac/boost/changeset/54126

Log:
bits of refactoring + consumer_iterator
Added:
   sandbox/SOC/2009/unicode/boost/iterator/consumer_iterator.hpp (contents, props changed)
   sandbox/SOC/2009/unicode/boost/iterator/dummy_output_iterator.hpp (contents, props changed)
   sandbox/SOC/2009/unicode/boost/unicode/utf.hpp (contents, props changed)
   sandbox/SOC/2009/unicode/boost/unicode/utf_codecs.hpp
      - copied, changed from r54045, /sandbox/SOC/2009/unicode/boost/unicode/utf_conversion.hpp
   sandbox/SOC/2009/unicode/libs/unicode/src/ucd/uni_ucd_interface_impl_data_10.ipp (contents, props changed)
   sandbox/SOC/2009/unicode/libs/unicode/src/ucd/uni_ucd_interface_impl_data_11.ipp (contents, props changed)
   sandbox/SOC/2009/unicode/libs/unicode/src/ucd/uni_ucd_interface_impl_data_12.ipp (contents, props changed)
   sandbox/SOC/2009/unicode/libs/unicode/src/ucd/uni_ucd_interface_impl_data_13.ipp (contents, props changed)
   sandbox/SOC/2009/unicode/libs/unicode/src/unicode_blocks.cpp (contents, props changed)
Removed:
   sandbox/SOC/2009/unicode/boost/unicode/utf_conversion.hpp
Text files modified:
   sandbox/SOC/2009/unicode/boost/iterator/pipe_iterator.hpp | 60 +++++++++++++++++++++++++-----
   sandbox/SOC/2009/unicode/boost/unicode/ucd/properties.hpp | 3 +
   sandbox/SOC/2009/unicode/boost/unicode/utf_codecs.hpp | 79 +++++----------------------------------
   sandbox/SOC/2009/unicode/libs/unicode/doc/users_manual.qbk | 47 +++++++++++++++++++----
   sandbox/SOC/2009/unicode/libs/unicode/example/test.cpp | 41 +++++++++++++++++++-
   5 files changed, 141 insertions(+), 89 deletions(-)

Added: sandbox/SOC/2009/unicode/boost/iterator/consumer_iterator.hpp
==============================================================================
--- (empty file)
+++ sandbox/SOC/2009/unicode/boost/iterator/consumer_iterator.hpp 2009-06-20 11:05:18 EDT (Sat, 20 Jun 2009)
@@ -0,0 +1,117 @@
+#ifndef BOOST_CONSUMER_ITERATOR_HPP
+#define BOOST_CONSUMER_ITERATOR_HPP
+
+#include <boost/iterator/iterator_facade.hpp>
+#include <boost/iterator/dummy_output_iterator.hpp>
+
+#include <boost/range.hpp>
+
+namespace boost
+{
+
+template<typename Pipe>
+struct pipe_consumer : private Pipe
+{
+ pipe_consumer() {} // singular
+
+ pipe_consumer(Pipe p_) : Pipe(p_)
+ {
+ }
+
+ template<typename In>
+ In ltr(In begin, In end)
+ {
+ return Pipe::ltr(begin, end, dummy_output_iterator()).first;
+ }
+
+ template<typename In>
+ In rtl(In begin, In end)
+ {
+ return Pipe::rtl(begin, end, dummy_output_iterator()).first;
+ }
+};
+
+template<typename Pipe>
+pipe_consumer<Pipe> make_pipe_consumer(Pipe p)
+{
+ return pipe_consumer<Pipe>(p);
+}
+
+template<typename It, typename Consumer>
+struct consumer_iterator
+ : boost::iterator_facade<
+ consumer_iterator<It, Consumer>,
+ boost::iterator_range<It>,
+ std::bidirectional_iterator_tag,
+ const boost::iterator_range<It>
+ >
+{
+ consumer_iterator() {} // singular
+
+ consumer_iterator(It begin_, It pos_, It end_, Consumer p_) : pos(pos_), begin(begin_), end(end_), p(p_)
+ {
+ if(pos != end)
+ next_pos = p.ltr(pos, end);
+ }
+
+ It base() const
+ {
+ return pos;
+ }
+
+private:
+ friend class boost::iterator_core_access;
+
+ boost::iterator_range<It> dereference() const
+ {
+ return boost::make_iterator_range(pos, next_pos);
+ }
+
+ void increment()
+ {
+ pos = next_pos;
+ if(pos != end)
+ next_pos = p.ltr(pos, end);
+ }
+
+ void decrement()
+ {
+ next_pos = pos;
+
+ pos = p.rtl(begin, pos);
+ }
+
+ bool equal(const consumer_iterator& other) const
+ {
+ return pos == other.pos;
+ }
+
+ It pos;
+ It next_pos;
+
+ It begin;
+ It end;
+
+ Consumer p;
+};
+
+template<typename It, typename P>
+consumer_iterator<It, P> make_consumer_iterator(It begin, It pos, It end, P p)
+{
+ return consumer_iterator<It, P>(begin, pos, end, p);
+}
+
+template<typename Range, typename P>
+boost::iterator_range<
+ consumer_iterator<typename boost::range_iterator<const Range>::type, P>
+> consumed(const Range& range, P p)
+{
+ return boost::make_iterator_range(
+ make_consumer_iterator(boost::begin(range), boost::begin(range), boost::end(range), p),
+ make_consumer_iterator(boost::begin(range), boost::end(range), boost::end(range), p)
+ );
+}
+
+} // namespace boost
+
+#endif

Added: sandbox/SOC/2009/unicode/boost/iterator/dummy_output_iterator.hpp
==============================================================================
--- (empty file)
+++ sandbox/SOC/2009/unicode/boost/iterator/dummy_output_iterator.hpp 2009-06-20 11:05:18 EDT (Sat, 20 Jun 2009)
@@ -0,0 +1,26 @@
+#ifndef BOOST_DUMMY_OUTPUT_ITERATOR_HPP
+#define BOOST_DUMMY_OUTPUT_ITERATOR_HPP
+
+#include <iterator>
+
+namespace boost
+{
+ struct dummy_output_iterator
+ {
+ typedef std::output_iterator_tag iterator_category;
+ typedef void value_type;
+ typedef void pointer;
+ typedef void difference_type;
+
+ struct reference {
+ template<typename T>
+ reference& operator=(const T&) { return *this; }
+ };
+
+ reference operator*() const { return reference(); }
+ dummy_output_iterator& operator++() { return *this; }
+ dummy_output_iterator operator++(int) { return *this; }
+ };
+} // namespace boost
+
+#endif

Modified: sandbox/SOC/2009/unicode/boost/iterator/pipe_iterator.hpp
==============================================================================
--- sandbox/SOC/2009/unicode/boost/iterator/pipe_iterator.hpp (original)
+++ sandbox/SOC/2009/unicode/boost/iterator/pipe_iterator.hpp 2009-06-20 11:05:18 EDT (Sat, 20 Jun 2009)
@@ -90,6 +90,8 @@
 template<typename P>
 struct one_many_pipe : P
 {
+ one_many_pipe() {} // singular
+
         one_many_pipe(P p_) : P(p_)
         {
         }
@@ -130,6 +132,8 @@
                 const typename Pipe::output_type
>
 {
+ pipe_iterator() {} // singular
+
         pipe_iterator(It begin_, It pos_, It end_, Pipe p_) : pos(pos_), begin(begin_), end(end_), index(0), p(p_)
         {
                 if(pos != end)
@@ -219,20 +223,45 @@
 }
 
 template<typename Range, typename P>
-std::pair<
- pipe_iterator<typename boost::range_iterator<const Range>::type, P>,
+boost::iterator_range<
         pipe_iterator<typename boost::range_iterator<const Range>::type, P>
-> make_pipe_range(const Range& range, P p)
+> piped(const Range& range, P p)
 {
- return std::make_pair(
+ return boost::make_iterator_range(
                 make_pipe_iterator(boost::begin(range), boost::begin(range), boost::end(range), p),
                 make_pipe_iterator(boost::begin(range), boost::end(range), boost::end(range), p)
         );
 }
 
+template<typename Range, typename Pipe, typename OutputIterator>
+OutputIterator pipe(const Range& range, Pipe pipe, OutputIterator out)
+{
+ typedef typename boost::range_iterator<const Range>::type Iterator;
+
+ Iterator begin = boost::begin(range);
+ Iterator end = boost::end(range);
+
+ while(begin != end)
+ {
+ std::pair<Iterator, OutputIterator> p = pipe.ltr(begin, end, out);
+ begin = p.first;
+ out = p.second;
+ }
+
+ return out;
+}
+
 template<typename It, typename Pipe>
 struct pipe_output_iterator
 {
+ typedef void difference_type;
+ typedef void value_type;
+ typedef pipe_output_iterator<It, Pipe>* pointer;
+ typedef pipe_output_iterator<It, Pipe>& reference;
+ typedef std::output_iterator_tag iterator_category;
+
+ pipe_output_iterator() {} // singular
+
         pipe_output_iterator(It pos_, Pipe p_) : pos(pos_), p(p_)
         {
         }
@@ -242,9 +271,9 @@
                 return pos;
         }
         
- pipe_output_iterator& operator*() const
+ const pipe_output_iterator& operator*() const
         {
- return const_cast<pipe_output_iterator&>(*this);
+ return *this;
         }
         
         pipe_output_iterator& operator++()
@@ -257,18 +286,29 @@
                 return *this;
         }
         
- void operator=(typename Pipe::output_type val) const
+ template<typename T>
+ void operator=(T val) const
         {
                 pos = p.ltr(&val, &val + 1, pos).second;
         }
+
+ bool operator==(const pipe_output_iterator& other) const
+ {
+ return pos == other.pos;
+ }
+
+ bool operator!=(const pipe_output_iterator& other) const
+ {
+ return pos != other.pos;
+ }
         
 private:
- It pos;
- Pipe p;
+ mutable It pos;
+ mutable Pipe p;
 };
 
 template<typename OutputIterator, typename P>
-pipe_output_iterator<OutputIterator, P> make_pipe_output_iterator(OutputIterator out, P p)
+pipe_output_iterator<OutputIterator, P> piped_output(OutputIterator out, P p)
 {
         return pipe_output_iterator<OutputIterator, P>(out, p);
 }

Modified: sandbox/SOC/2009/unicode/boost/unicode/ucd/properties.hpp
==============================================================================
--- sandbox/SOC/2009/unicode/boost/unicode/ucd/properties.hpp (original)
+++ sandbox/SOC/2009/unicode/boost/unicode/ucd/properties.hpp 2009-06-20 11:05:18 EDT (Sat, 20 Jun 2009)
@@ -10,6 +10,9 @@
 #include <algorithm>
 #include <iostream>
 
+#define BOOST_UNICODE_UCD_VERSION_MAJOR 4
+#define BOOST_UNICODE_UCD_VERSION_MINOR 0
+
 namespace boost
 {
 namespace unicode

Added: sandbox/SOC/2009/unicode/boost/unicode/utf.hpp
==============================================================================
--- (empty file)
+++ sandbox/SOC/2009/unicode/boost/unicode/utf.hpp 2009-06-20 11:05:18 EDT (Sat, 20 Jun 2009)
@@ -0,0 +1,109 @@
+#ifndef BOOST_UNICODE_UTF_HPP
+#define BOOST_UNICODE_UTF_HPP
+
+#include <boost/unicode/utf_codecs.hpp>
+#include <boost/iterator/pipe_iterator.hpp>
+#include <boost/iterator/consumer_iterator.hpp>
+
+namespace boost
+{
+
+template<typename Range>
+boost::iterator_range<
+ pipe_iterator<typename range_iterator<const Range>::type, one_many_pipe<unicode::u16_encoder> >
+> u16_encoded(const Range& range)
+{
+ return piped(range, make_one_many_pipe(unicode::u16_encoder()));
+}
+
+template<typename Range>
+boost::iterator_range<
+ pipe_iterator<typename range_iterator<const Range>::type, unicode::u16_decoder>
+> u16_decoded(const Range& range)
+{
+ return piped(range, unicode::u16_decoder());
+}
+
+template<typename OutputIterator>
+pipe_output_iterator<
+ OutputIterator,
+ one_many_pipe<unicode::u16_encoder>
+> u16_encoded_out(OutputIterator out)
+{
+ return piped_output(out, make_one_many_pipe(unicode::u16_encoder()));
+}
+
+template<typename Range, typename OutputIterator>
+OutputIterator u16_encode(const Range& range, OutputIterator out)
+{
+ return pipe(range, make_one_many_pipe(unicode::u16_encoder()), out);
+}
+
+template<typename Range, typename OutputIterator>
+OutputIterator u16_decode(const Range& range, OutputIterator out)
+{
+ return pipe(range, unicode::u16_decoder(), out);
+}
+
+template<typename Range>
+boost::iterator_range<
+ consumer_iterator<
+ typename range_iterator<const Range>::type,
+ pipe_consumer<unicode::u16_decoder>
+ >
+> u16_bounded(const Range& range)
+{
+ return consumed(range, make_pipe_consumer(unicode::u16_decoder()));
+}
+
+template<typename Range>
+boost::iterator_range<
+ pipe_iterator<typename range_iterator<const Range>::type, one_many_pipe<unicode::u8_encoder> >
+> u8_encoded(const Range& range)
+{
+ return piped(range, make_one_many_pipe(unicode::u8_encoder()));
+}
+
+template<typename Range>
+boost::iterator_range<
+ pipe_iterator<typename range_iterator<const Range>::type, unicode::u8_decoder>
+> u8_decoded(const Range& range)
+{
+ return piped(range, unicode::u8_decoder());
+}
+
+template<typename OutputIterator>
+pipe_output_iterator<
+ OutputIterator,
+ one_many_pipe<unicode::u8_encoder>
+> u8_encoded_out(OutputIterator out)
+{
+ return piped_output(out, make_one_many_pipe(unicode::u8_encoder()));
+}
+
+template<typename Range, typename OutputIterator>
+OutputIterator u8_encode(const Range& range, OutputIterator out)
+{
+ return pipe(range, make_one_many_pipe(unicode::u8_encoder()), out);
+}
+
+template<typename Range, typename OutputIterator>
+OutputIterator u8_decode(const Range& range, OutputIterator out)
+{
+ return pipe(range, unicode::u8_decoder(), out);
+}
+
+template<typename Range>
+boost::iterator_range<
+ consumer_iterator<
+ typename range_iterator<const Range>::type,
+ pipe_consumer<unicode::u8_decoder>
+ >
+> u8_bounded(const Range& range)
+{
+ return consumed(range, make_pipe_consumer(unicode::u8_decoder()));
+}
+
+} // namespace boost
+
+#endif

Copied: sandbox/SOC/2009/unicode/boost/unicode/utf_codecs.hpp (from r54045, /sandbox/SOC/2009/unicode/boost/unicode/utf_conversion.hpp)
==============================================================================
--- /sandbox/SOC/2009/unicode/boost/unicode/utf_conversion.hpp (original)
+++ sandbox/SOC/2009/unicode/boost/unicode/utf_codecs.hpp 2009-06-20 11:05:18 EDT (Sat, 20 Jun 2009)
@@ -1,5 +1,5 @@
-#ifndef BOOST_UTF_CONVERSION_HPP
-#define BOOST_UTF_CONVERSION_HPP
+#ifndef BOOST_UTF_CODECS_HPP
+#define BOOST_UTF_CODECS_HPP
 
 #include <boost/assert.hpp>
 #include <boost/throw_exception.hpp>
@@ -9,9 +9,9 @@
 #include <ios>
 #endif
 
-#include <boost/iterator/pipe_iterator.hpp>
 #include <boost/unicode/surrogates.hpp>
 
+
 namespace boost
 {
 
@@ -48,7 +48,7 @@
 {
 #ifndef BOOST_NO_STD_LOCALE
         std::stringstream ss;
- ss << "Invalid UTF-32 code point U+" << std::showbase << std::hex << (uint_least32_t)val << " encountered while trying to encode UTF-16 sequence";
+ ss << "Invalid UTF-32 code point U+" << std::showbase << std::hex << (uint_least32_t)val << " encountered";
         std::out_of_range e(ss.str());
 #else
         std::out_of_range e("Invalid UTF-32 code point encountered while trying to encode UTF-16 sequence");
@@ -74,7 +74,7 @@
 
 } // namespace detail
 
-struct u16_packer
+struct u16_encoder
 {
         typedef char16 output_type;
     static const int max_output = 2;
@@ -113,7 +113,7 @@
         }
 };
 
-struct u16_unpacker
+struct u16_decoder
 {
         typedef char32 output_type;
     static const int max_output = 1;
@@ -186,7 +186,7 @@
         }
 };
 
-struct u8_packer
+struct u8_encoder
 {
         typedef char output_type;
     static const int max_output = 4;
@@ -224,7 +224,7 @@
         }
 };
 
-struct u8_unpacker
+struct u8_decoder
 {
         typedef char32 output_type;
     static const int max_output = 1;
@@ -266,7 +266,7 @@
                 
                 // check the result:
                 if(value > static_cast<char32>(0x10FFFFu))
- invalid_utf_sequence(begin, end);
+ detail::invalid_utf_sequence(begin, end);
                 
                 *out++ = value;
                                 
@@ -287,7 +287,7 @@
                 while((*it & 0xC0u) == 0x80u)
                 {
                         if(count >= 4 || it == begin)
- invalid_utf_sequence(begin, end);
+ detail::invalid_utf_sequence(begin, end);
                                 
                         --it;
                         ++count;
@@ -295,7 +295,7 @@
 
                 // now check that the sequence was valid:
                 if(count != detail::utf8_trailing_byte_count(value))
- invalid_utf_sequence(begin, end);
+ detail::invalid_utf_sequence(begin, end);
                 
                 out = ltr(it, end, out).second;
                 return std::make_pair(it, out);
@@ -304,63 +304,6 @@
 
 } // namespace unicode
 
-/** \brief test
- * blabla
- * \param range a big ass range
- * \return something
- * \throw bla
- * \pre precondition
- * \post postcondition **/
-template<typename Range>
-std::pair<
- pipe_iterator<typename range_iterator<const Range>::type, one_many_pipe<unicode::u16_packer> >,
- pipe_iterator<typename range_iterator<const Range>::type, one_many_pipe<unicode::u16_packer> >
-> make_u32_to_u16_range(const Range& range)
-{
- return make_pipe_range(range, make_one_many_pipe(unicode::u16_packer()));
-}
-
-template<typename Range>
-std::pair<
- pipe_iterator<typename range_iterator<const Range>::type, unicode::u16_unpacker>,
- pipe_iterator<typename range_iterator<const Range>::type, unicode::u16_unpacker>
-> make_u16_to_u32_range(const Range& range)
-{
- return make_pipe_range(range, unicode::u16_unpacker());
-}
-
-template<typename Range>
-std::pair<
- pipe_iterator<typename range_iterator<const Range>::type, one_many_pipe<unicode::u8_packer> >,
- pipe_iterator<typename range_iterator<const Range>::type, one_many_pipe<unicode::u8_packer> >
-> make_u32_to_u8_range(const Range& range)
-{
- return make_pipe_range(range, make_one_many_pipe(unicode::u8_packer()));
-}
-
-template<typename Range>
-std::pair<
- pipe_iterator<typename range_iterator<const Range>::type, unicode::u8_unpacker>,
- pipe_iterator<typename range_iterator<const Range>::type, unicode::u8_unpacker>
-> make_u8_to_u32_range(const Range& range)
-{
- return make_pipe_range(range, unicode::u8_unpacker());
-}
-
-template<typename OutputIterator>
-pipe_output_iterator<OutputIterator, one_many_pipe<unicode::u8_packer> >
-make_u8_output_iterator(OutputIterator out)
-{
- return make_pipe_output_iterator(out, make_one_many_pipe(unicode::u8_packer()));
-}
-
-template<typename OutputIterator>
-pipe_output_iterator<OutputIterator, one_many_pipe<unicode::u16_packer> >
-make_u16_output_iterator(OutputIterator out)
-{
- return make_pipe_output_iterator(out, make_one_many_pipe(unicode::u16_packer()));
-}
-
 } // namespace boost
 
 #endif

Deleted: sandbox/SOC/2009/unicode/boost/unicode/utf_conversion.hpp
==============================================================================
--- sandbox/SOC/2009/unicode/boost/unicode/utf_conversion.hpp 2009-06-20 11:05:18 EDT (Sat, 20 Jun 2009)
+++ (empty file)
@@ -1,366 +0,0 @@
-#ifndef BOOST_UTF_CONVERSION_HPP
-#define BOOST_UTF_CONVERSION_HPP
-
-#include <boost/assert.hpp>
-#include <boost/throw_exception.hpp>
-#include <stdexcept>
-#ifndef BOOST_NO_STD_LOCALE
-#include <sstream>
-#include <ios>
-#endif
-
-#include <boost/iterator/pipe_iterator.hpp>
-#include <boost/unicode/surrogates.hpp>
-
-namespace boost
-{
-
-namespace unicode
-{
-
-namespace detail
-{
-
-static const char16 high_surrogate_base = 0xD7C0u;
-static const char16 low_surrogate_base = 0xDC00u;
-static const char32 ten_bit_mask = 0x3FFu;
-
-inline unsigned utf8_byte_count(uint8_t c)
-{
- // if the most significant bit with a zero in it is in position
- // 8-N then there are N bytes in this UTF-8 sequence:
- uint8_t mask = 0x80u;
- unsigned result = 0;
- while(c & mask)
- {
- ++result;
- mask >>= 1;
- }
- return (result == 0) ? 1 : ((result > 4) ? 4 : result);
-}
-
-inline unsigned utf8_trailing_byte_count(uint8_t c)
-{
- return utf8_byte_count(c) - 1;
-}
-
-inline void invalid_code_point(char32 val)
-{
-#ifndef BOOST_NO_STD_LOCALE
- std::stringstream ss;
- ss << "Invalid UTF-32 code point U+" << std::showbase << std::hex << (uint_least32_t)val << " encountered while trying to encode UTF-16 sequence";
- std::out_of_range e(ss.str());
-#else
- std::out_of_range e("Invalid UTF-32 code point encountered while trying to encode UTF-16 sequence");
-#endif
- throw_exception(e);
-}
-
-template<typename Iterator>
-inline void invalid_utf_sequence(Iterator begin, Iterator end)
-{
-#ifndef BOOST_NO_STD_LOCALE
- std::stringstream ss;
- ss << "Invalid UTF sequence " << std::showbase << std::hex;
- for(Iterator it = begin; it != end; ++it)
- ss << *it << " ";
- ss << "encountered while trying to decode UTF-32 sequence";
- std::out_of_range e(ss.str());
-#else
- std::out_of_range e("Invalid UTF sequence encountered while trying to decode UTF-32 sequence");
-#endif
- throw_exception(e);
-}
-
-} // namespace detail
-
-struct u16_packer
-{
- typedef char16 output_type;
- static const int max_output = 2;
-
- template<typename OutputIterator>
- OutputIterator operator()(char32 v, OutputIterator out)
- {
- if(v >= 0x10000u)
- {
- if(v > 0x10FFFFu)
- detail::invalid_code_point(v);
-
- // split into two surrogates:
- output_type hi = static_cast<output_type>(v >> 10) + detail::high_surrogate_base;
- output_type lo = static_cast<output_type>(v & detail::ten_bit_mask) + detail::low_surrogate_base;
-
- BOOST_ASSERT(unicode::is_high_surrogate(hi));
- BOOST_ASSERT(unicode::is_low_surrogate(lo));
-
- *out++ = hi;
- *out++ = lo;
- }
- else
- {
- // 16-bit code point:
- output_type cp = static_cast<output_type>(v);
-
- // value must not be a surrogate:
- if(unicode::is_surrogate(cp))
- detail::invalid_code_point(v);
-
- *out++ = cp;
- }
-
- return out;
- }
-};
-
-struct u16_unpacker
-{
- typedef char32 output_type;
- static const int max_output = 1;
-
- template<typename In, typename Out>
- std::pair<In, Out>
- ltr(In begin, In end, Out out)
- {
- BOOST_ASSERT(begin != end);
-
- In it = begin;
- char32 value = *it;
-
- if(unicode::is_high_surrogate(value))
- {
- if(++it == end)
- detail::invalid_utf_sequence(begin, end);
-
- // precondition; next value must have be a low-surrogate:
- char16 lo = *it;
- if(!unicode::is_low_surrogate(lo))
- detail::invalid_code_point(lo);
-
- value = code_point(value, lo);
- }
- // postcondition; result must not be a surrogate:
- if(unicode::is_surrogate(value))
- detail::invalid_code_point(static_cast<char16>(value));
-
- *out++ = value;
-
- return std::make_pair(++it, out);
- }
-
- template<typename In, typename Out>
- std::pair<In, Out>
- rtl(In begin, In end, Out out)
- {
- BOOST_ASSERT(begin != end);
-
- In it = --end;
- char32 value = *it;
-
- if(unicode::is_low_surrogate(value))
- {
- if(it == begin)
- detail::invalid_utf_sequence(begin, end);
- --it;
-
- char16 hi = *it;
- if(!unicode::is_high_surrogate(hi))
- detail::invalid_code_point(hi);
-
- value = code_point(hi, value);
- }
- // postcondition; result must not be a surrogate:
- if(unicode::is_surrogate(value))
- detail::invalid_code_point(static_cast<char16>(value));
-
- *out++ = value;
-
- return std::make_pair(it, out);
- }
-
-private:
- char32 code_point(char16 hi, char16 lo)
- {
- return ((hi - detail::high_surrogate_base) << 10)
- | (static_cast<char32>(static_cast<char16>(lo)) & detail::ten_bit_mask);
- }
-};
-
-struct u8_packer
-{
- typedef char output_type;
- static const int max_output = 4;
-
- template<typename OutputIterator>
- OutputIterator operator()(char32 c, OutputIterator out)
- {
- if(c > 0x10FFFFu)
- detail::invalid_code_point(c);
-
- if(c < 0x80u)
- {
- *out++ = static_cast<unsigned char>(c);
- }
- else if(c < 0x800u)
- {
- *out++ = static_cast<unsigned char>(0xC0u + (c >> 6));
- *out++ = static_cast<unsigned char>(0x80u + (c & 0x3Fu));
- }
- else if(c < 0x10000u)
- {
- *out++ = static_cast<unsigned char>(0xE0u + (c >> 12));
- *out++ = static_cast<unsigned char>(0x80u + ((c >> 6) & 0x3Fu));
- *out++ = static_cast<unsigned char>(0x80u + (c & 0x3Fu));
- }
- else
- {
- *out++ = static_cast<unsigned char>(0xF0u + (c >> 18));
- *out++ = static_cast<unsigned char>(0x80u + ((c >> 12) & 0x3Fu));
- *out++ = static_cast<unsigned char>(0x80u + ((c >> 6) & 0x3Fu));
- *out++ = static_cast<unsigned char>(0x80u + (c & 0x3Fu));
- }
-
- return out;
- }
-};
-
-struct u8_unpacker
-{
- typedef char32 output_type;
- static const int max_output = 1;
-
- template<typename In, typename Out>
- std::pair<In, Out>
- ltr(In begin, In end, Out out)
- {
- BOOST_ASSERT(begin != end);
-
- In it = begin;
- char32 value = *it;
-
- if((value & 0xC0u) == 0x80u)
- detail::invalid_utf_sequence(begin, end);
-
- // see how many extra byts we have:
- unsigned extra = detail::utf8_trailing_byte_count(value);
- // extract the extra bits, 6 from each extra byte:
- for(unsigned c = 0; c < extra; ++c)
- {
- if(++it == end)
- detail::invalid_utf_sequence(begin, end);
-
- value <<= 6;
- value += static_cast<unsigned char>(*it) & 0x3Fu;
- }
-
- // we now need to remove a few of the leftmost bits, but how many depends
- // upon how many extra bytes we've extracted:
- static const char32 masks[4] =
- {
- 0x7Fu,
- 0x7FFu,
- 0xFFFFu,
- 0x1FFFFFu,
- };
- value &= masks[extra];
-
- // check the result:
- if(value > static_cast<char32>(0x10FFFFu))
- invalid_utf_sequence(begin, end);
-
- *out++ = value;
-
- return std::make_pair(++it, out);
- }
-
- template<typename In, typename Out>
- std::pair<In, Out>
- rtl(In begin, In end, Out out)
- {
- BOOST_ASSERT(begin != end);
-
- In it = --end;
- char32 value = *it;
-
- // Keep backtracking until we don't have a trailing character:
- unsigned count = 0;
- while((*it & 0xC0u) == 0x80u)
- {
- if(count >= 4 || it == begin)
- invalid_utf_sequence(begin, end);
-
- --it;
- ++count;
- }
-
- // now check that the sequence was valid:
- if(count != detail::utf8_trailing_byte_count(value))
- invalid_utf_sequence(begin, end);
-
- out = ltr(it, end, out).second;
- return std::make_pair(it, out);
- }
-};
-
-} // namespace unicode
-
-/** \brief test
- * blabla
- * \param range a big ass range
- * \return something
- * \throw bla
- * \pre precondition
- * \post postcondition **/
-template<typename Range>
-std::pair<
- pipe_iterator<typename range_iterator<const Range>::type, one_many_pipe<unicode::u16_packer> >,
- pipe_iterator<typename range_iterator<const Range>::type, one_many_pipe<unicode::u16_packer> >
-> make_u32_to_u16_range(const Range& range)
-{
- return make_pipe_range(range, make_one_many_pipe(unicode::u16_packer()));
-}
-
-template<typename Range>
-std::pair<
- pipe_iterator<typename range_iterator<const Range>::type, unicode::u16_unpacker>,
- pipe_iterator<typename range_iterator<const Range>::type, unicode::u16_unpacker>
-> make_u16_to_u32_range(const Range& range)
-{
- return make_pipe_range(range, unicode::u16_unpacker());
-}
-
-template<typename Range>
-std::pair<
- pipe_iterator<typename range_iterator<const Range>::type, one_many_pipe<unicode::u8_packer> >,
- pipe_iterator<typename range_iterator<const Range>::type, one_many_pipe<unicode::u8_packer> >
-> make_u32_to_u8_range(const Range& range)
-{
- return make_pipe_range(range, make_one_many_pipe(unicode::u8_packer()));
-}
-
-template<typename Range>
-std::pair<
- pipe_iterator<typename range_iterator<const Range>::type, unicode::u8_unpacker>,
- pipe_iterator<typename range_iterator<const Range>::type, unicode::u8_unpacker>
-> make_u8_to_u32_range(const Range& range)
-{
- return make_pipe_range(range, unicode::u8_unpacker());
-}
-
-template<typename OutputIterator>
-pipe_output_iterator<OutputIterator, one_many_pipe<unicode::u8_packer> >
-make_u8_output_iterator(OutputIterator out)
-{
- return make_pipe_output_iterator(out, make_one_many_pipe(unicode::u8_packer()));
-}
-
-template<typename OutputIterator>
-pipe_output_iterator<OutputIterator, one_many_pipe<unicode::u16_packer> >
-make_u16_output_iterator(OutputIterator out)
-{
- return make_pipe_output_iterator(out, make_one_many_pipe(unicode::u16_packer()));
-}
-
-} // namespace boost
-
-#endif

Modified: sandbox/SOC/2009/unicode/libs/unicode/doc/users_manual.qbk
==============================================================================
--- sandbox/SOC/2009/unicode/libs/unicode/doc/users_manual.qbk (original)
+++ sandbox/SOC/2009/unicode/libs/unicode/doc/users_manual.qbk 2009-06-20 11:05:18 EDT (Sat, 20 Jun 2009)
@@ -154,7 +154,7 @@
 [section Linking the library]
 
 As has been stated in [link unicode.introduction_to_unicode.character_properties Introduction to Unicode], several Unicode algorithms require the usage of a large
-database of information which, as of version 0.2 of this library, is 2.6 MB big on x86.
+database of information which, as of version 0.1a2 of this library, is 2.6 MB big on x86.
 
 For this reason, features that can avoid dependency on that database do so; it is not required for conversions for example. All algorithms that depend on the Unicode
 Character Database are documented as such. All other features are header-only.
@@ -186,7 +186,7 @@
 ``auto concept Pipe<typename T>
 {
     typename output_type = T::output_type;
- static const int T::max_output; // optional
+ static const int T::max_output; // optional
 
     template<typename In, typename Out>
     std::pair<In, Out> T::ltr(In begin, In end, Out out);
@@ -195,10 +195,39 @@
     std::pair<In, Out> T::rtl(In begin, In end, Out out);
 };``
 
-models: [classref boost::unicode::u8_unpacker], [classref boost::unicode::u8_packer],
-[classref boost::unicode::u16_unpacker], [classref boost::unicode::u16_packer].
+models: [classref boost::unicode::u8_decoder],
+[classref boost::unicode::u16_decoder].
 
-Then pipe_iterator for on-the-fly conversion.
+``auto concept OneManyPipe<typename T>
+{
+ typename Input;
+
+ typename output_type = T::output_type;
+ static const int T::max_output; // optional
+
+ template<typename Out>
+ Out T::operator()(Input input, Out out);
+};``
+
+models: [classref boost::unicode::u8_encoder],
+[classref boost::unicode::u16_encoder].
+
+May be converted to a =Pipe= by using [classref boost::one_many_pipe].
+
+A =Pipe= may then be used with [classref boost::pipe_iterator] to generate iterator/range
+adapters or [classref boost::pipe_output_iterator] to generate
+output iterators with on-the-fly conversion.
+Alternatively, the algorithm may be applied eagerly to the whole range using [funcref boost::pipe].
+
+The library provides several helpers for the UTF conversion codecs, which naming convention is as follows:
+
+* [funcref boost::u8_encode] is an eager encoding algorithm.
+* [funcref boost::u8_decode] is an eager decoding algorithm.
+* [funcref boost::u8_encoded] returns a range adapter that does on-the-fly encoding.
+* [funcref boost::u8_decoded] returns a range adapter that does on-the-fly decoding.
+* [funcref boost::u8_encoded_out] returns an output iterator adapter that will encode its output.
+* [funcref boost::u8_bounded] returns a range adapter that turns the range into a range of subranges,
+with each subrange being the consumed input for a decoding step.
 
 [endsect]
 
@@ -210,7 +239,7 @@
     bool T::operator()(Iterator begin, Iterator end, Iterator pos);
 };``
 
-``auto concept BoundaryConsumer<typename T>
+``auto concept Consumer<typename T>
 {
     template<typename Iterator>
     Iterator T::ltr(Iterator begin, Iterator end);
@@ -219,10 +248,10 @@
     Iterator T::rtl(Iterator begin, Iterator end);
 }``
 
-basically the same as Pipe without the output.
-
-BoundaryConsumer can be defined in terms of BoundaryChecker.
+Can be obtained by converting a =Pipe= with [classref boost::pipe_consumer] or a =BoundaryChecker= with =boost::boundary_consumer=.
 
+A =Consumer= may then be used with [classref boost::consumer_iterator] to generate iterator/range
+adapters with turns the range into a range of subranges, each subrange being one consumed input.
 
 [endsect]
 

Modified: sandbox/SOC/2009/unicode/libs/unicode/example/test.cpp
==============================================================================
--- sandbox/SOC/2009/unicode/libs/unicode/example/test.cpp (original)
+++ sandbox/SOC/2009/unicode/libs/unicode/example/test.cpp 2009-06-20 11:05:18 EDT (Sat, 20 Jun 2009)
@@ -1,8 +1,12 @@
 #include <iostream>
 #include <boost/foreach.hpp>
-#include <boost/unicode/utf_conversion.hpp>
+#include <boost/unicode/utf.hpp>
 #include <boost/unicode/ucd/properties.hpp>
 
+#include <boost/typeof/typeof.hpp>
+
+#include <algorithm>
+
 template<typename Range>
 std::pair<
         boost::reverse_iterator<typename boost::range_iterator<Range>::type>,
@@ -15,6 +19,23 @@
         );
 }
 
+template<typename Range, typename OutputIterator>
+void copy(const Range& range, OutputIterator out)
+{
+ std::copy(boost::begin(range), boost::end(range), out);
+}
+
+#define FOREACH_AUTO_BEGIN(name, range) \
+for( \
+ BOOST_AUTO(_it_##__LINE__, boost::begin(range)); \
+ _it_##__LINE__ != boost::end(range); \
+ ++_it_##__LINE__ \
+) \
+{ \
+ BOOST_AUTO(name, *_it_##__LINE__);
+
+#define FOREACH_AUTO_END }
+
 int main()
 {
         std::vector<boost::char32> v;
@@ -36,9 +57,25 @@
         v.push_back(0x7b);*/
         
         
- BOOST_FOREACH(char cp, make_reverse_range(boost::make_u32_to_u8_range(v)))
+ BOOST_FOREACH(char cp, make_reverse_range(boost::u8_encoded(v)))
+ std::cout << std::hex << (int)(unsigned char)cp << std::endl;
+
+ std::vector<char> v2;
+ copy(v, boost::u8_encoded_out(std::back_inserter(v2)));
+
+ BOOST_FOREACH(char cp, boost::u8_decoded(v2))
                 std::cout << std::hex << (int)(unsigned char)cp << std::endl;
         
+ std::cout << std::endl;
+
+ BOOST_AUTO(range, boost::u8_bounded( boost::u8_encoded(v) ) );
+ FOREACH_AUTO_BEGIN(code_points, range)
+ FOREACH_AUTO_BEGIN(cu, code_points)
+ std::cout << ' ' << std::hex << (int)(unsigned char)cu;
+ FOREACH_AUTO_END
+ std::cout << ',';
+ FOREACH_AUTO_END
+
     std::cout << "\n" << boost::unicode::ucd::get_name(0xE9) << std::endl;
     std::cout << boost::unicode::ucd::as_string(boost::unicode::ucd::get_block(0xE9)) << std::endl;
 }

Added: sandbox/SOC/2009/unicode/libs/unicode/src/ucd/uni_ucd_interface_impl_data_10.ipp
==============================================================================
--- (empty file)
+++ sandbox/SOC/2009/unicode/libs/unicode/src/ucd/uni_ucd_interface_impl_data_10.ipp 2009-06-20 11:05:18 EDT (Sat, 20 Jun 2009)
@@ -0,0 +1,24618 @@
+// Though this file is under the Boost license, it is NOT (or not yet) part of
+// Boost!
+
+// Copyright Graham Barnett, Rogier van Dalen 2005.
+// Use, modification, and distribution are subject to the Boost Software
+// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
+// http://www.boost.org/LICENSE_1_0.txt)
+
+// This file was created using information from the
+// www.unicode.org web site
+// License http://www.unicode.org/copyright.html
+
+/**** This file should not be included in any file manually ****/
+/**** This file is automatically generated and should not be modified.****/
+/**** Data in this file should not be accessed directly except ****/
+/**** through the single published interface as documented in Boost ****/
+
+
+using namespace boost::unicode;
+
+
+
+namespace boost { namespace unicode { namespace ucd {
+
+
+
+
+static const unichar_data_internal __uni_char_data_ffe00[]=
+{
+ { // char 0xffe00,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe01,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe02,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe03,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe04,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe05,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe06,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe07,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe08,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe09,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe0a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe0b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe0c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe0d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe0e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe0f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe10,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe11,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe12,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe13,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe14,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe15,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe16,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe17,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe18,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe19,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe1a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe1b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe1c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe1d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe1e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe1f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe20,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe21,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe22,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe23,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe24,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe25,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe26,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe27,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe28,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe29,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe2a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe2b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe2c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe2d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe2e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe2f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe30,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe31,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe32,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe33,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe34,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe35,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe36,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe37,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe38,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe39,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe3a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe3b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe3c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe3d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe3e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe3f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe40,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe41,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe42,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe43,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe44,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe45,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe46,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe47,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe48,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe49,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe4a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe4b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe4c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe4d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe4e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe4f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe50,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe51,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe52,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe53,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe54,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe55,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe56,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe57,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe58,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe59,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe5a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe5b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe5c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe5d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe5e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe5f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe60,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe61,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe62,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe63,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe64,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe65,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe66,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe67,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe68,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe69,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe6a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe6b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe6c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe6d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe6e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe6f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe70,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe71,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe72,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe73,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe74,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe75,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe76,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe77,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe78,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe79,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe7a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe7b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe7c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe7d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe7e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe7f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe80,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe81,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe82,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe83,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe84,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe85,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe86,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe87,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe88,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe89,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe8a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe8b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe8c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe8d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe8e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe8f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe90,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe91,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe92,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe93,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe94,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe95,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe96,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe97,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe98,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe99,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe9a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe9b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe9c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe9d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe9e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe9f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffea0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffea1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffea2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffea3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffea4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffea5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffea6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffea7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffea8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffea9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffeaa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffeab,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffeac,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffead,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffeae,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffeaf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffeb0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffeb1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffeb2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffeb3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffeb4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffeb5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffeb6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffeb7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffeb8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffeb9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffeba,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffebb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffebc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffebd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffebe,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffebf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffec0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffec1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffec2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffec3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffec4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffec5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffec6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffec7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffec8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffec9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffeca,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffecb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffecc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffecd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffece,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffecf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffed0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffed1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffed2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffed3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffed4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffed5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffed6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffed7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffed8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffed9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffeda,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffedb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffedc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffedd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffede,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffedf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffee0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffee1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffee2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffee3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffee4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffee5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffee6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffee7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffee8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffee9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffeea,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffeeb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffeec,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffeed,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffeee,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffeef,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffef0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffef1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffef2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffef3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffef4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffef5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffef6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffef7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffef8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffef9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffefa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffefb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffefc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffefd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffefe,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffeff,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff00,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff01,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff02,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff03,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff04,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff05,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff06,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff07,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff08,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff09,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff0a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff0b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff0c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff0d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff0e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff0f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff10,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff11,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff12,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff13,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff14,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff15,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff16,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff17,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff18,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff19,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff1a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff1b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff1c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff1d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff1e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff1f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff20,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff21,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff22,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff23,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff24,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff25,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff26,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff27,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff28,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff29,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff2a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff2b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff2c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff2d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff2e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff2f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff30,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff31,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff32,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff33,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff34,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff35,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff36,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff37,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff38,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff39,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff3a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff3b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff3c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff3d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff3e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff3f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff40,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff41,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff42,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff43,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff44,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff45,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff46,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff47,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff48,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff49,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff4a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff4b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff4c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff4d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff4e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff4f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff50,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff51,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff52,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff53,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff54,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff55,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff56,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff57,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff58,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff59,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff5a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff5b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff5c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff5d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff5e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff5f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff60,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff61,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff62,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff63,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff64,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff65,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff66,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff67,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff68,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff69,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff6a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff6b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff6c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff6d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff6e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff6f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff70,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff71,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff72,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff73,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff74,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff75,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff76,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff77,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff78,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff79,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff7a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff7b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff7c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff7d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff7e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff7f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff80,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff81,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff82,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff83,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff84,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff85,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff86,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff87,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff88,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff89,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff8a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff8b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff8c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff8d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff8e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff8f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff90,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff91,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff92,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff93,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff94,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff95,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff96,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff97,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff98,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff99,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff9a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff9b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff9c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff9d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff9e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff9f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffa0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffa1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffa2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffa3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffa4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffa5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffa6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffa7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffa8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffa9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffaa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffab,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffac,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffad,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffae,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffaf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffb0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffb1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffb2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffb3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffb4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffb5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffb6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffb7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffb8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffb9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffba,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffbb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffbc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffbd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffbe,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffbf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffc0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffc1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffc2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffc3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffc4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffc5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffc6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffc7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffc8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffc9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffca,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffcb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffcc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffcd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffce,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffcf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffd0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffd1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffd2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffd3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffd4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffd5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffd6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffd7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffd8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffd9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffda,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffdb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffdc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffdd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffde,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffdf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffe0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffe1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffe2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffe3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffe4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffe5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffe6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffe7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffe8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffe9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffea,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffeb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffec,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffed,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffee,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffef,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffff0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffff1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffff2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffff3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffff4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffff5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffff6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffff7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffff8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffff9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffffa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffffb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffffc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffffd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffffe,
+ "<control>",
+ NULL,
+ NULL,
+ {
+ category::other_control,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::zero_data1_data2_cp,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::control,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffff,
+ "<control>",
+ NULL,
+ NULL,
+ {
+ category::other_control,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::zero_data1_data2_cp,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::control,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+};
+
+
+
+
+
+
+static const unichar_data_internal __uni_char_data_100000[]=
+{
+ { // char 0x100000,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100001,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100002,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100003,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100004,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100005,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100006,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100007,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100008,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100009,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10000a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10000b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10000c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10000d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10000e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10000f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100010,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100011,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100012,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100013,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100014,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100015,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100016,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100017,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100018,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100019,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10001a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10001b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10001c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10001d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10001e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10001f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100020,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100021,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100022,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100023,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100024,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100025,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100026,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100027,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100028,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100029,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10002a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10002b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10002c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10002d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10002e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10002f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100030,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100031,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100032,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100033,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100034,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100035,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100036,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100037,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100038,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100039,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10003a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10003b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10003c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10003d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10003e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10003f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100040,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100041,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100042,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100043,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100044,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100045,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100046,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100047,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100048,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100049,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10004a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10004b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10004c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10004d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10004e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10004f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100050,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100051,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100052,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100053,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100054,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100055,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100056,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100057,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100058,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100059,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10005a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10005b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10005c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10005d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10005e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10005f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100060,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100061,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100062,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100063,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100064,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100065,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100066,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100067,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100068,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100069,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10006a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10006b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10006c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10006d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10006e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10006f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100070,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100071,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100072,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100073,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100074,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100075,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100076,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100077,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100078,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100079,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10007a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10007b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10007c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10007d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10007e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10007f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100080,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100081,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100082,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100083,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100084,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100085,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100086,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100087,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100088,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100089,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10008a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10008b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10008c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10008d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10008e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10008f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100090,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100091,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100092,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100093,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100094,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100095,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100096,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100097,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100098,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100099,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10009a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10009b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10009c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10009d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10009e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10009f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000a0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000a1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000a2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000a3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000a4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000a5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000a6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000a7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000a8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000a9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000aa,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000ab,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000ac,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000ad,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000ae,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000af,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000b0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000b1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000b2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000b3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000b4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000b5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000b6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000b7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000b8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000b9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000ba,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000bb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000bc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000bd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000be,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000bf,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000c0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000c1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000c2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000c3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000c4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000c5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000c6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000c7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000c8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000c9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000ca,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000cb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000cc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000cd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000ce,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000cf,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000d0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000d1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000d2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000d3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000d4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000d5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000d6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000d7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000d8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000d9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000da,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000db,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000dc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000dd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000de,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000df,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000e0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000e1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000e2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000e3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000e4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000e5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000e6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000e7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000e8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000e9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000ea,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000eb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000ec,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000ed,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000ee,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000ef,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000f0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000f1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000f2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000f3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000f4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000f5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000f6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000f7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000f8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000f9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000fa,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000fb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000fc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000fd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000fe,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000ff,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100100,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100101,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100102,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100103,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100104,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100105,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100106,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100107,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100108,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100109,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10010a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10010b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10010c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10010d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10010e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10010f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100110,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100111,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100112,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100113,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100114,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100115,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100116,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100117,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100118,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100119,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10011a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10011b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10011c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10011d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10011e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10011f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100120,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100121,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100122,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100123,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100124,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100125,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100126,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100127,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100128,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100129,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10012a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10012b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10012c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10012d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10012e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10012f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100130,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100131,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100132,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100133,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100134,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100135,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100136,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100137,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100138,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100139,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10013a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10013b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10013c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10013d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10013e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10013f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100140,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100141,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100142,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100143,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100144,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100145,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100146,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100147,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100148,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100149,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10014a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10014b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10014c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10014d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10014e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10014f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100150,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100151,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100152,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100153,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100154,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100155,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100156,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100157,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100158,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100159,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10015a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10015b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10015c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10015d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10015e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10015f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100160,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100161,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100162,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100163,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100164,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100165,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100166,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100167,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100168,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100169,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10016a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10016b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10016c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10016d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10016e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10016f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100170,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100171,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100172,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100173,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100174,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100175,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100176,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100177,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100178,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100179,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10017a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10017b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10017c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10017d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10017e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10017f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100180,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100181,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100182,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100183,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100184,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100185,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100186,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100187,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100188,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100189,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10018a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10018b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10018c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10018d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10018e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10018f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100190,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100191,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100192,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100193,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100194,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100195,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100196,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100197,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100198,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100199,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10019a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10019b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10019c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10019d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10019e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10019f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001a0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001a1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001a2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001a3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001a4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001a5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001a6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001a7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001a8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001a9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001aa,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001ab,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001ac,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001ad,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001ae,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001af,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001b0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001b1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001b2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001b3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001b4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001b5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001b6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001b7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001b8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001b9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001ba,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001bb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001bc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001bd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001be,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001bf,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001c0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001c1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001c2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001c3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001c4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001c5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001c6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001c7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001c8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001c9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001ca,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001cb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001cc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001cd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001ce,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001cf,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001d0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001d1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001d2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001d3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001d4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001d5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001d6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001d7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001d8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001d9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001da,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001db,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001dc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001dd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001de,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001df,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001e0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001e1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001e2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001e3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001e4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001e5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001e6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001e7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001e8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001e9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001ea,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001eb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001ec,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001ed,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001ee,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001ef,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001f0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001f1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001f2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001f3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001f4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001f5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001f6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001f7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001f8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001f9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001fa,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001fb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001fc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001fd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001fe,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001ff,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+};
+
+
+}}} // namespaces

Added: sandbox/SOC/2009/unicode/libs/unicode/src/ucd/uni_ucd_interface_impl_data_11.ipp
==============================================================================
--- (empty file)
+++ sandbox/SOC/2009/unicode/libs/unicode/src/ucd/uni_ucd_interface_impl_data_11.ipp 2009-06-20 11:05:18 EDT (Sat, 20 Jun 2009)
@@ -0,0 +1,197192 @@
+// Though this file is under the Boost license, it is NOT (or not yet) part of
+// Boost!
+
+// Copyright Graham Barnett, Rogier van Dalen 2005.
+// Use, modification, and distribution are subject to the Boost Software
+// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
+// http://www.boost.org/LICENSE_1_0.txt)
+
+// This file was created using information from the
+// www.unicode.org web site
+// License http://www.unicode.org/copyright.html
+
+/**** This file should not be included in any file manually ****/
+/**** This file is automatically generated and should not be modified.****/
+/**** Data in this file should not be accessed directly except ****/
+/**** through the single published interface as documented in Boost ****/
+
+
+using namespace boost::unicode;
+
+
+
+namespace boost { namespace unicode { namespace ucd {
+static const char32 __uni_decomp_data_0x2f800[] = { 0x4e3d, 0, };
+static const char32 __uni_decomp_data_0x2f801[] = { 0x4e38, 0, };
+static const char32 __uni_decomp_data_0x2f802[] = { 0x4e41, 0, };
+static const char32 __uni_decomp_data_0x2f803[] = { 0x20122, 0, };
+static const char32 __uni_decomp_data_0x2f804[] = { 0x4f60, 0, };
+static const char32 __uni_decomp_data_0x2f805[] = { 0x4fae, 0, };
+static const char32 __uni_decomp_data_0x2f806[] = { 0x4fbb, 0, };
+static const char32 __uni_decomp_data_0x2f807[] = { 0x5002, 0, };
+static const char32 __uni_decomp_data_0x2f808[] = { 0x507a, 0, };
+static const char32 __uni_decomp_data_0x2f809[] = { 0x5099, 0, };
+static const char32 __uni_decomp_data_0x2f80a[] = { 0x50e7, 0, };
+static const char32 __uni_decomp_data_0x2f80b[] = { 0x50cf, 0, };
+static const char32 __uni_decomp_data_0x2f80c[] = { 0x349e, 0, };
+static const char32 __uni_decomp_data_0x2f80d[] = { 0x2063a, 0, };
+static const char32 __uni_decomp_data_0x2f80e[] = { 0x514d, 0, };
+static const char32 __uni_decomp_data_0x2f80f[] = { 0x5154, 0, };
+static const char32 __uni_decomp_data_0x2f810[] = { 0x5164, 0, };
+static const char32 __uni_decomp_data_0x2f811[] = { 0x5177, 0, };
+static const char32 __uni_decomp_data_0x2f812[] = { 0x2051c, 0, };
+static const char32 __uni_decomp_data_0x2f813[] = { 0x34b9, 0, };
+static const char32 __uni_decomp_data_0x2f814[] = { 0x5167, 0, };
+static const char32 __uni_decomp_data_0x2f815[] = { 0x518d, 0, };
+static const char32 __uni_decomp_data_0x2f816[] = { 0x2054b, 0, };
+static const char32 __uni_decomp_data_0x2f817[] = { 0x5197, 0, };
+static const char32 __uni_decomp_data_0x2f818[] = { 0x51a4, 0, };
+static const char32 __uni_decomp_data_0x2f819[] = { 0x4ecc, 0, };
+static const char32 __uni_decomp_data_0x2f81a[] = { 0x51ac, 0, };
+static const char32 __uni_decomp_data_0x2f81b[] = { 0x51b5, 0, };
+static const char32 __uni_decomp_data_0x2f81c[] = { 0x291df, 0, };
+static const char32 __uni_decomp_data_0x2f81d[] = { 0x51f5, 0, };
+static const char32 __uni_decomp_data_0x2f81e[] = { 0x5203, 0, };
+static const char32 __uni_decomp_data_0x2f81f[] = { 0x34df, 0, };
+static const char32 __uni_decomp_data_0x2f820[] = { 0x523b, 0, };
+static const char32 __uni_decomp_data_0x2f821[] = { 0x5246, 0, };
+static const char32 __uni_decomp_data_0x2f822[] = { 0x5272, 0, };
+static const char32 __uni_decomp_data_0x2f823[] = { 0x5277, 0, };
+static const char32 __uni_decomp_data_0x2f824[] = { 0x3515, 0, };
+static const char32 __uni_decomp_data_0x2f825[] = { 0x52c7, 0, };
+static const char32 __uni_decomp_data_0x2f826[] = { 0x52c9, 0, };
+static const char32 __uni_decomp_data_0x2f827[] = { 0x52e4, 0, };
+static const char32 __uni_decomp_data_0x2f828[] = { 0x52fa, 0, };
+static const char32 __uni_decomp_data_0x2f829[] = { 0x5305, 0, };
+static const char32 __uni_decomp_data_0x2f82a[] = { 0x5306, 0, };
+static const char32 __uni_decomp_data_0x2f82b[] = { 0x5317, 0, };
+static const char32 __uni_decomp_data_0x2f82c[] = { 0x5349, 0, };
+static const char32 __uni_decomp_data_0x2f82d[] = { 0x5351, 0, };
+static const char32 __uni_decomp_data_0x2f82e[] = { 0x535a, 0, };
+static const char32 __uni_decomp_data_0x2f82f[] = { 0x5373, 0, };
+static const char32 __uni_decomp_data_0x2f830[] = { 0x537d, 0, };
+static const char32 __uni_decomp_data_0x2f831[] = { 0x537f, 0, };
+static const char32 __uni_decomp_data_0x2f832[] = { 0x537f, 0, };
+static const char32 __uni_decomp_data_0x2f833[] = { 0x537f, 0, };
+static const char32 __uni_decomp_data_0x2f834[] = { 0x20a2c, 0, };
+static const char32 __uni_decomp_data_0x2f835[] = { 0x7070, 0, };
+static const char32 __uni_decomp_data_0x2f836[] = { 0x53ca, 0, };
+static const char32 __uni_decomp_data_0x2f837[] = { 0x53df, 0, };
+static const char32 __uni_decomp_data_0x2f838[] = { 0x20b63, 0, };
+static const char32 __uni_decomp_data_0x2f839[] = { 0x53eb, 0, };
+static const char32 __uni_decomp_data_0x2f83a[] = { 0x53f1, 0, };
+static const char32 __uni_decomp_data_0x2f83b[] = { 0x5406, 0, };
+static const char32 __uni_decomp_data_0x2f83c[] = { 0x549e, 0, };
+static const char32 __uni_decomp_data_0x2f83d[] = { 0x5438, 0, };
+static const char32 __uni_decomp_data_0x2f83e[] = { 0x5448, 0, };
+static const char32 __uni_decomp_data_0x2f83f[] = { 0x5468, 0, };
+static const char32 __uni_decomp_data_0x2f840[] = { 0x54a2, 0, };
+static const char32 __uni_decomp_data_0x2f841[] = { 0x54f6, 0, };
+static const char32 __uni_decomp_data_0x2f842[] = { 0x5510, 0, };
+static const char32 __uni_decomp_data_0x2f843[] = { 0x5553, 0, };
+static const char32 __uni_decomp_data_0x2f844[] = { 0x5563, 0, };
+static const char32 __uni_decomp_data_0x2f845[] = { 0x5584, 0, };
+static const char32 __uni_decomp_data_0x2f846[] = { 0x5584, 0, };
+static const char32 __uni_decomp_data_0x2f847[] = { 0x5599, 0, };
+static const char32 __uni_decomp_data_0x2f848[] = { 0x55ab, 0, };
+static const char32 __uni_decomp_data_0x2f849[] = { 0x55b3, 0, };
+static const char32 __uni_decomp_data_0x2f84a[] = { 0x55c2, 0, };
+static const char32 __uni_decomp_data_0x2f84b[] = { 0x5716, 0, };
+static const char32 __uni_decomp_data_0x2f84c[] = { 0x5606, 0, };
+static const char32 __uni_decomp_data_0x2f84d[] = { 0x5717, 0, };
+static const char32 __uni_decomp_data_0x2f84e[] = { 0x5651, 0, };
+static const char32 __uni_decomp_data_0x2f84f[] = { 0x5674, 0, };
+static const char32 __uni_decomp_data_0x2f850[] = { 0x5207, 0, };
+static const char32 __uni_decomp_data_0x2f851[] = { 0x58ee, 0, };
+static const char32 __uni_decomp_data_0x2f852[] = { 0x57ce, 0, };
+static const char32 __uni_decomp_data_0x2f853[] = { 0x57f4, 0, };
+static const char32 __uni_decomp_data_0x2f854[] = { 0x580d, 0, };
+static const char32 __uni_decomp_data_0x2f855[] = { 0x578b, 0, };
+static const char32 __uni_decomp_data_0x2f856[] = { 0x5832, 0, };
+static const char32 __uni_decomp_data_0x2f857[] = { 0x5831, 0, };
+static const char32 __uni_decomp_data_0x2f858[] = { 0x58ac, 0, };
+static const char32 __uni_decomp_data_0x2f859[] = { 0x214e4, 0, };
+static const char32 __uni_decomp_data_0x2f85a[] = { 0x58f2, 0, };
+static const char32 __uni_decomp_data_0x2f85b[] = { 0x58f7, 0, };
+static const char32 __uni_decomp_data_0x2f85c[] = { 0x5906, 0, };
+static const char32 __uni_decomp_data_0x2f85d[] = { 0x591a, 0, };
+static const char32 __uni_decomp_data_0x2f85e[] = { 0x5922, 0, };
+static const char32 __uni_decomp_data_0x2f85f[] = { 0x5962, 0, };
+static const char32 __uni_decomp_data_0x2f860[] = { 0x216a8, 0, };
+static const char32 __uni_decomp_data_0x2f861[] = { 0x216ea, 0, };
+static const char32 __uni_decomp_data_0x2f862[] = { 0x59ec, 0, };
+static const char32 __uni_decomp_data_0x2f863[] = { 0x5a1b, 0, };
+static const char32 __uni_decomp_data_0x2f864[] = { 0x5a27, 0, };
+static const char32 __uni_decomp_data_0x2f865[] = { 0x59d8, 0, };
+static const char32 __uni_decomp_data_0x2f866[] = { 0x5a66, 0, };
+static const char32 __uni_decomp_data_0x2f867[] = { 0x36ee, 0, };
+static const char32 __uni_decomp_data_0x2f868[] = { 0x36fc, 0, };
+static const char32 __uni_decomp_data_0x2f869[] = { 0x5b08, 0, };
+static const char32 __uni_decomp_data_0x2f86a[] = { 0x5b3e, 0, };
+static const char32 __uni_decomp_data_0x2f86b[] = { 0x5b3e, 0, };
+static const char32 __uni_decomp_data_0x2f86c[] = { 0x219c8, 0, };
+static const char32 __uni_decomp_data_0x2f86d[] = { 0x5bc3, 0, };
+static const char32 __uni_decomp_data_0x2f86e[] = { 0x5bd8, 0, };
+static const char32 __uni_decomp_data_0x2f86f[] = { 0x5be7, 0, };
+static const char32 __uni_decomp_data_0x2f870[] = { 0x5bf3, 0, };
+static const char32 __uni_decomp_data_0x2f871[] = { 0x21b18, 0, };
+static const char32 __uni_decomp_data_0x2f872[] = { 0x5bff, 0, };
+static const char32 __uni_decomp_data_0x2f873[] = { 0x5c06, 0, };
+static const char32 __uni_decomp_data_0x2f874[] = { 0x5f53, 0, };
+static const char32 __uni_decomp_data_0x2f875[] = { 0x5c22, 0, };
+static const char32 __uni_decomp_data_0x2f876[] = { 0x3781, 0, };
+static const char32 __uni_decomp_data_0x2f877[] = { 0x5c60, 0, };
+static const char32 __uni_decomp_data_0x2f878[] = { 0x5c6e, 0, };
+static const char32 __uni_decomp_data_0x2f879[] = { 0x5cc0, 0, };
+static const char32 __uni_decomp_data_0x2f87a[] = { 0x5c8d, 0, };
+static const char32 __uni_decomp_data_0x2f87b[] = { 0x21de4, 0, };
+static const char32 __uni_decomp_data_0x2f87c[] = { 0x5d43, 0, };
+static const char32 __uni_decomp_data_0x2f87d[] = { 0x21de6, 0, };
+static const char32 __uni_decomp_data_0x2f87e[] = { 0x5d6e, 0, };
+static const char32 __uni_decomp_data_0x2f87f[] = { 0x5d6b, 0, };
+static const char32 __uni_decomp_data_0x2f880[] = { 0x5d7c, 0, };
+static const char32 __uni_decomp_data_0x2f881[] = { 0x5de1, 0, };
+static const char32 __uni_decomp_data_0x2f882[] = { 0x5de2, 0, };
+static const char32 __uni_decomp_data_0x2f883[] = { 0x382f, 0, };
+static const char32 __uni_decomp_data_0x2f884[] = { 0x5dfd, 0, };
+static const char32 __uni_decomp_data_0x2f885[] = { 0x5e28, 0, };
+static const char32 __uni_decomp_data_0x2f886[] = { 0x5e3d, 0, };
+static const char32 __uni_decomp_data_0x2f887[] = { 0x5e69, 0, };
+static const char32 __uni_decomp_data_0x2f888[] = { 0x3862, 0, };
+static const char32 __uni_decomp_data_0x2f889[] = { 0x22183, 0, };
+static const char32 __uni_decomp_data_0x2f88a[] = { 0x387c, 0, };
+static const char32 __uni_decomp_data_0x2f88b[] = { 0x5eb0, 0, };
+static const char32 __uni_decomp_data_0x2f88c[] = { 0x5eb3, 0, };
+static const char32 __uni_decomp_data_0x2f88d[] = { 0x5eb6, 0, };
+static const char32 __uni_decomp_data_0x2f88e[] = { 0x5eca, 0, };
+static const char32 __uni_decomp_data_0x2f88f[] = { 0x2a392, 0, };
+static const char32 __uni_decomp_data_0x2f890[] = { 0x5efe, 0, };
+static const char32 __uni_decomp_data_0x2f891[] = { 0x22331, 0, };
+static const char32 __uni_decomp_data_0x2f892[] = { 0x22331, 0, };
+static const char32 __uni_decomp_data_0x2f893[] = { 0x8201, 0, };
+static const char32 __uni_decomp_data_0x2f894[] = { 0x5f22, 0, };
+static const char32 __uni_decomp_data_0x2f895[] = { 0x5f22, 0, };
+static const char32 __uni_decomp_data_0x2f896[] = { 0x38c7, 0, };
+static const char32 __uni_decomp_data_0x2f897[] = { 0x232b8, 0, };
+static const char32 __uni_decomp_data_0x2f898[] = { 0x261da, 0, };
+static const char32 __uni_decomp_data_0x2f899[] = { 0x5f62, 0, };
+static const char32 __uni_decomp_data_0x2f89a[] = { 0x5f6b, 0, };
+static const char32 __uni_decomp_data_0x2f89b[] = { 0x38e3, 0, };
+static const char32 __uni_decomp_data_0x2f89c[] = { 0x5f9a, 0, };
+static const char32 __uni_decomp_data_0x2f89d[] = { 0x5fcd, 0, };
+static const char32 __uni_decomp_data_0x2f89e[] = { 0x5fd7, 0, };
+static const char32 __uni_decomp_data_0x2f89f[] = { 0x5ff9, 0, };
+static const char32 __uni_decomp_data_0x2f8a0[] = { 0x6081, 0, };
+static const char32 __uni_decomp_data_0x2f8a1[] = { 0x393a, 0, };
+static const char32 __uni_decomp_data_0x2f8a2[] = { 0x391c, 0, };
+static const char32 __uni_decomp_data_0x2f8a3[] = { 0x6094, 0, };
+static const char32 __uni_decomp_data_0x2f8a4[] = { 0x226d4, 0, };
+static const char32 __uni_decomp_data_0x2f8a5[] = { 0x60c7, 0, };
+static const char32 __uni_decomp_data_0x2f8a6[] = { 0x6148, 0, };
+static const char32 __uni_decomp_data_0x2f8a7[] = { 0x614c, 0, };
+static const char32 __uni_decomp_data_0x2f8a8[] = { 0x614e, 0, };
+static const char32 __uni_decomp_data_0x2f8a9[] = { 0x614c, 0, };
+static const char32 __uni_decomp_data_0x2f8aa[] = { 0x617a, 0, };
+static const char32 __uni_decomp_data_0x2f8ab[] = { 0x618e, 0, };
+static const char32 __uni_decomp_data_0x2f8ac[] = { 0x61b2, 0, };
+static const char32 __uni_decomp_data_0x2f8ad[] = { 0x61a4, 0, };
+static const char32 __uni_decomp_data_0x2f8ae[] = { 0x61af, 0, };
+static const char32 __uni_decomp_data_0x2f8af[] = { 0x61de, 0, };
+static const char32 __uni_decomp_data_0x2f8b0[] = { 0x61f2, 0, };
+static const char32 __uni_decomp_data_0x2f8b1[] = { 0x61f6, 0, };
+static const char32 __uni_decomp_data_0x2f8b2[] = { 0x6210, 0, };
+static const char32 __uni_decomp_data_0x2f8b3[] = { 0x621b, 0, };
+static const char32 __uni_decomp_data_0x2f8b4[] = { 0x625d, 0, };
+static const char32 __uni_decomp_data_0x2f8b5[] = { 0x62b1, 0, };
+static const char32 __uni_decomp_data_0x2f8b6[] = { 0x62d4, 0, };
+static const char32 __uni_decomp_data_0x2f8b7[] = { 0x6350, 0, };
+static const char32 __uni_decomp_data_0x2f8b8[] = { 0x22b0c, 0, };
+static const char32 __uni_decomp_data_0x2f8b9[] = { 0x633d, 0, };
+static const char32 __uni_decomp_data_0x2f8ba[] = { 0x62fc, 0, };
+static const char32 __uni_decomp_data_0x2f8bb[] = { 0x6368, 0, };
+static const char32 __uni_decomp_data_0x2f8bc[] = { 0x6383, 0, };
+static const char32 __uni_decomp_data_0x2f8bd[] = { 0x63e4, 0, };
+static const char32 __uni_decomp_data_0x2f8be[] = { 0x22bf1, 0, };
+static const char32 __uni_decomp_data_0x2f8bf[] = { 0x6422, 0, };
+static const char32 __uni_decomp_data_0x2f8c0[] = { 0x63c5, 0, };
+static const char32 __uni_decomp_data_0x2f8c1[] = { 0x63a9, 0, };
+static const char32 __uni_decomp_data_0x2f8c2[] = { 0x3a2e, 0, };
+static const char32 __uni_decomp_data_0x2f8c3[] = { 0x6469, 0, };
+static const char32 __uni_decomp_data_0x2f8c4[] = { 0x647e, 0, };
+static const char32 __uni_decomp_data_0x2f8c5[] = { 0x649d, 0, };
+static const char32 __uni_decomp_data_0x2f8c6[] = { 0x6477, 0, };
+static const char32 __uni_decomp_data_0x2f8c7[] = { 0x3a6c, 0, };
+static const char32 __uni_decomp_data_0x2f8c8[] = { 0x654f, 0, };
+static const char32 __uni_decomp_data_0x2f8c9[] = { 0x656c, 0, };
+static const char32 __uni_decomp_data_0x2f8ca[] = { 0x2300a, 0, };
+static const char32 __uni_decomp_data_0x2f8cb[] = { 0x65e3, 0, };
+static const char32 __uni_decomp_data_0x2f8cc[] = { 0x66f8, 0, };
+static const char32 __uni_decomp_data_0x2f8cd[] = { 0x6649, 0, };
+static const char32 __uni_decomp_data_0x2f8ce[] = { 0x3b19, 0, };
+static const char32 __uni_decomp_data_0x2f8cf[] = { 0x6691, 0, };
+static const char32 __uni_decomp_data_0x2f8d0[] = { 0x3b08, 0, };
+static const char32 __uni_decomp_data_0x2f8d1[] = { 0x3ae4, 0, };
+static const char32 __uni_decomp_data_0x2f8d2[] = { 0x5192, 0, };
+static const char32 __uni_decomp_data_0x2f8d3[] = { 0x5195, 0, };
+static const char32 __uni_decomp_data_0x2f8d4[] = { 0x6700, 0, };
+static const char32 __uni_decomp_data_0x2f8d5[] = { 0x669c, 0, };
+static const char32 __uni_decomp_data_0x2f8d6[] = { 0x80ad, 0, };
+static const char32 __uni_decomp_data_0x2f8d7[] = { 0x43d9, 0, };
+static const char32 __uni_decomp_data_0x2f8d8[] = { 0x6717, 0, };
+static const char32 __uni_decomp_data_0x2f8d9[] = { 0x671b, 0, };
+static const char32 __uni_decomp_data_0x2f8da[] = { 0x6721, 0, };
+static const char32 __uni_decomp_data_0x2f8db[] = { 0x675e, 0, };
+static const char32 __uni_decomp_data_0x2f8dc[] = { 0x6753, 0, };
+static const char32 __uni_decomp_data_0x2f8dd[] = { 0x233c3, 0, };
+static const char32 __uni_decomp_data_0x2f8de[] = { 0x3b49, 0, };
+static const char32 __uni_decomp_data_0x2f8df[] = { 0x67fa, 0, };
+static const char32 __uni_decomp_data_0x2f8e0[] = { 0x6785, 0, };
+static const char32 __uni_decomp_data_0x2f8e1[] = { 0x6852, 0, };
+static const char32 __uni_decomp_data_0x2f8e2[] = { 0x6885, 0, };
+static const char32 __uni_decomp_data_0x2f8e3[] = { 0x2346d, 0, };
+static const char32 __uni_decomp_data_0x2f8e4[] = { 0x688e, 0, };
+static const char32 __uni_decomp_data_0x2f8e5[] = { 0x681f, 0, };
+static const char32 __uni_decomp_data_0x2f8e6[] = { 0x6914, 0, };
+static const char32 __uni_decomp_data_0x2f8e7[] = { 0x3b9d, 0, };
+static const char32 __uni_decomp_data_0x2f8e8[] = { 0x6942, 0, };
+static const char32 __uni_decomp_data_0x2f8e9[] = { 0x69a3, 0, };
+static const char32 __uni_decomp_data_0x2f8ea[] = { 0x69ea, 0, };
+static const char32 __uni_decomp_data_0x2f8eb[] = { 0x6aa8, 0, };
+static const char32 __uni_decomp_data_0x2f8ec[] = { 0x236a3, 0, };
+static const char32 __uni_decomp_data_0x2f8ed[] = { 0x6adb, 0, };
+static const char32 __uni_decomp_data_0x2f8ee[] = { 0x3c18, 0, };
+static const char32 __uni_decomp_data_0x2f8ef[] = { 0x6b21, 0, };
+static const char32 __uni_decomp_data_0x2f8f0[] = { 0x238a7, 0, };
+static const char32 __uni_decomp_data_0x2f8f1[] = { 0x6b54, 0, };
+static const char32 __uni_decomp_data_0x2f8f2[] = { 0x3c4e, 0, };
+static const char32 __uni_decomp_data_0x2f8f3[] = { 0x6b72, 0, };
+static const char32 __uni_decomp_data_0x2f8f4[] = { 0x6b9f, 0, };
+static const char32 __uni_decomp_data_0x2f8f5[] = { 0x6bba, 0, };
+static const char32 __uni_decomp_data_0x2f8f6[] = { 0x6bbb, 0, };
+static const char32 __uni_decomp_data_0x2f8f7[] = { 0x23a8d, 0, };
+static const char32 __uni_decomp_data_0x2f8f8[] = { 0x21d0b, 0, };
+static const char32 __uni_decomp_data_0x2f8f9[] = { 0x23afa, 0, };
+static const char32 __uni_decomp_data_0x2f8fa[] = { 0x6c4e, 0, };
+static const char32 __uni_decomp_data_0x2f8fb[] = { 0x23cbc, 0, };
+static const char32 __uni_decomp_data_0x2f8fc[] = { 0x6cbf, 0, };
+static const char32 __uni_decomp_data_0x2f8fd[] = { 0x6ccd, 0, };
+static const char32 __uni_decomp_data_0x2f8fe[] = { 0x6c67, 0, };
+static const char32 __uni_decomp_data_0x2f8ff[] = { 0x6d16, 0, };
+static const char32 __uni_decomp_data_0x2f900[] = { 0x6d3e, 0, };
+static const char32 __uni_decomp_data_0x2f901[] = { 0x6d77, 0, };
+static const char32 __uni_decomp_data_0x2f902[] = { 0x6d41, 0, };
+static const char32 __uni_decomp_data_0x2f903[] = { 0x6d69, 0, };
+static const char32 __uni_decomp_data_0x2f904[] = { 0x6d78, 0, };
+static const char32 __uni_decomp_data_0x2f905[] = { 0x6d85, 0, };
+static const char32 __uni_decomp_data_0x2f906[] = { 0x23d1e, 0, };
+static const char32 __uni_decomp_data_0x2f907[] = { 0x6d34, 0, };
+static const char32 __uni_decomp_data_0x2f908[] = { 0x6e2f, 0, };
+static const char32 __uni_decomp_data_0x2f909[] = { 0x6e6e, 0, };
+static const char32 __uni_decomp_data_0x2f90a[] = { 0x3d33, 0, };
+static const char32 __uni_decomp_data_0x2f90b[] = { 0x6ecb, 0, };
+static const char32 __uni_decomp_data_0x2f90c[] = { 0x6ec7, 0, };
+static const char32 __uni_decomp_data_0x2f90d[] = { 0x23ed1, 0, };
+static const char32 __uni_decomp_data_0x2f90e[] = { 0x6df9, 0, };
+static const char32 __uni_decomp_data_0x2f90f[] = { 0x6f6e, 0, };
+static const char32 __uni_decomp_data_0x2f910[] = { 0x23f5e, 0, };
+static const char32 __uni_decomp_data_0x2f911[] = { 0x23f8e, 0, };
+static const char32 __uni_decomp_data_0x2f912[] = { 0x6fc6, 0, };
+static const char32 __uni_decomp_data_0x2f913[] = { 0x7039, 0, };
+static const char32 __uni_decomp_data_0x2f914[] = { 0x701e, 0, };
+static const char32 __uni_decomp_data_0x2f915[] = { 0x701b, 0, };
+static const char32 __uni_decomp_data_0x2f916[] = { 0x3d96, 0, };
+static const char32 __uni_decomp_data_0x2f917[] = { 0x704a, 0, };
+static const char32 __uni_decomp_data_0x2f918[] = { 0x707d, 0, };
+static const char32 __uni_decomp_data_0x2f919[] = { 0x7077, 0, };
+static const char32 __uni_decomp_data_0x2f91a[] = { 0x70ad, 0, };
+static const char32 __uni_decomp_data_0x2f91b[] = { 0x20525, 0, };
+static const char32 __uni_decomp_data_0x2f91c[] = { 0x7145, 0, };
+static const char32 __uni_decomp_data_0x2f91d[] = { 0x24263, 0, };
+static const char32 __uni_decomp_data_0x2f91e[] = { 0x719c, 0, };
+static const char32 __uni_decomp_data_0x2f91f[] = { 0x243ab, 0, };
+static const char32 __uni_decomp_data_0x2f920[] = { 0x7228, 0, };
+static const char32 __uni_decomp_data_0x2f921[] = { 0x7235, 0, };
+static const char32 __uni_decomp_data_0x2f922[] = { 0x7250, 0, };
+static const char32 __uni_decomp_data_0x2f923[] = { 0x24608, 0, };
+static const char32 __uni_decomp_data_0x2f924[] = { 0x7280, 0, };
+static const char32 __uni_decomp_data_0x2f925[] = { 0x7295, 0, };
+static const char32 __uni_decomp_data_0x2f926[] = { 0x24735, 0, };
+static const char32 __uni_decomp_data_0x2f927[] = { 0x24814, 0, };
+static const char32 __uni_decomp_data_0x2f928[] = { 0x737a, 0, };
+static const char32 __uni_decomp_data_0x2f929[] = { 0x738b, 0, };
+static const char32 __uni_decomp_data_0x2f92a[] = { 0x3eac, 0, };
+static const char32 __uni_decomp_data_0x2f92b[] = { 0x73a5, 0, };
+static const char32 __uni_decomp_data_0x2f92c[] = { 0x3eb8, 0, };
+static const char32 __uni_decomp_data_0x2f92d[] = { 0x3eb8, 0, };
+static const char32 __uni_decomp_data_0x2f92e[] = { 0x7447, 0, };
+static const char32 __uni_decomp_data_0x2f92f[] = { 0x745c, 0, };
+static const char32 __uni_decomp_data_0x2f930[] = { 0x7471, 0, };
+static const char32 __uni_decomp_data_0x2f931[] = { 0x7485, 0, };
+static const char32 __uni_decomp_data_0x2f932[] = { 0x74ca, 0, };
+static const char32 __uni_decomp_data_0x2f933[] = { 0x3f1b, 0, };
+static const char32 __uni_decomp_data_0x2f934[] = { 0x7524, 0, };
+static const char32 __uni_decomp_data_0x2f935[] = { 0x24c36, 0, };
+static const char32 __uni_decomp_data_0x2f936[] = { 0x753e, 0, };
+static const char32 __uni_decomp_data_0x2f937[] = { 0x24c92, 0, };
+static const char32 __uni_decomp_data_0x2f938[] = { 0x7570, 0, };
+static const char32 __uni_decomp_data_0x2f939[] = { 0x2219f, 0, };
+static const char32 __uni_decomp_data_0x2f93a[] = { 0x7610, 0, };
+static const char32 __uni_decomp_data_0x2f93b[] = { 0x24fa1, 0, };
+static const char32 __uni_decomp_data_0x2f93c[] = { 0x24fb8, 0, };
+static const char32 __uni_decomp_data_0x2f93d[] = { 0x25044, 0, };
+static const char32 __uni_decomp_data_0x2f93e[] = { 0x3ffc, 0, };
+static const char32 __uni_decomp_data_0x2f93f[] = { 0x4008, 0, };
+static const char32 __uni_decomp_data_0x2f940[] = { 0x76f4, 0, };
+static const char32 __uni_decomp_data_0x2f941[] = { 0x250f3, 0, };
+static const char32 __uni_decomp_data_0x2f942[] = { 0x250f2, 0, };
+static const char32 __uni_decomp_data_0x2f943[] = { 0x25119, 0, };
+static const char32 __uni_decomp_data_0x2f944[] = { 0x25133, 0, };
+static const char32 __uni_decomp_data_0x2f945[] = { 0x771e, 0, };
+static const char32 __uni_decomp_data_0x2f946[] = { 0x771f, 0, };
+static const char32 __uni_decomp_data_0x2f947[] = { 0x771f, 0, };
+static const char32 __uni_decomp_data_0x2f948[] = { 0x774a, 0, };
+static const char32 __uni_decomp_data_0x2f949[] = { 0x4039, 0, };
+static const char32 __uni_decomp_data_0x2f94a[] = { 0x778b, 0, };
+static const char32 __uni_decomp_data_0x2f94b[] = { 0x4046, 0, };
+static const char32 __uni_decomp_data_0x2f94c[] = { 0x4096, 0, };
+static const char32 __uni_decomp_data_0x2f94d[] = { 0x2541d, 0, };
+static const char32 __uni_decomp_data_0x2f94e[] = { 0x784e, 0, };
+static const char32 __uni_decomp_data_0x2f94f[] = { 0x788c, 0, };
+static const char32 __uni_decomp_data_0x2f950[] = { 0x78cc, 0, };
+static const char32 __uni_decomp_data_0x2f951[] = { 0x40e3, 0, };
+static const char32 __uni_decomp_data_0x2f952[] = { 0x25626, 0, };
+static const char32 __uni_decomp_data_0x2f953[] = { 0x7956, 0, };
+static const char32 __uni_decomp_data_0x2f954[] = { 0x2569a, 0, };
+static const char32 __uni_decomp_data_0x2f955[] = { 0x256c5, 0, };
+static const char32 __uni_decomp_data_0x2f956[] = { 0x798f, 0, };
+static const char32 __uni_decomp_data_0x2f957[] = { 0x79eb, 0, };
+static const char32 __uni_decomp_data_0x2f958[] = { 0x412f, 0, };
+static const char32 __uni_decomp_data_0x2f959[] = { 0x7a40, 0, };
+static const char32 __uni_decomp_data_0x2f95a[] = { 0x7a4a, 0, };
+static const char32 __uni_decomp_data_0x2f95b[] = { 0x7a4f, 0, };
+static const char32 __uni_decomp_data_0x2f95c[] = { 0x2597c, 0, };
+static const char32 __uni_decomp_data_0x2f95d[] = { 0x25aa7, 0, };
+static const char32 __uni_decomp_data_0x2f95e[] = { 0x25aa7, 0, };
+static const char32 __uni_decomp_data_0x2f95f[] = { 0x7aee, 0, };
+static const char32 __uni_decomp_data_0x2f960[] = { 0x4202, 0, };
+static const char32 __uni_decomp_data_0x2f961[] = { 0x25bab, 0, };
+static const char32 __uni_decomp_data_0x2f962[] = { 0x7bc6, 0, };
+static const char32 __uni_decomp_data_0x2f963[] = { 0x7bc9, 0, };
+static const char32 __uni_decomp_data_0x2f964[] = { 0x4227, 0, };
+static const char32 __uni_decomp_data_0x2f965[] = { 0x25c80, 0, };
+static const char32 __uni_decomp_data_0x2f966[] = { 0x7cd2, 0, };
+static const char32 __uni_decomp_data_0x2f967[] = { 0x42a0, 0, };
+static const char32 __uni_decomp_data_0x2f968[] = { 0x7ce8, 0, };
+static const char32 __uni_decomp_data_0x2f969[] = { 0x7ce3, 0, };
+static const char32 __uni_decomp_data_0x2f96a[] = { 0x7d00, 0, };
+static const char32 __uni_decomp_data_0x2f96b[] = { 0x25f86, 0, };
+static const char32 __uni_decomp_data_0x2f96c[] = { 0x7d63, 0, };
+static const char32 __uni_decomp_data_0x2f96d[] = { 0x4301, 0, };
+static const char32 __uni_decomp_data_0x2f96e[] = { 0x7dc7, 0, };
+static const char32 __uni_decomp_data_0x2f96f[] = { 0x7e02, 0, };
+static const char32 __uni_decomp_data_0x2f970[] = { 0x7e45, 0, };
+static const char32 __uni_decomp_data_0x2f971[] = { 0x4334, 0, };
+static const char32 __uni_decomp_data_0x2f972[] = { 0x26228, 0, };
+static const char32 __uni_decomp_data_0x2f973[] = { 0x26247, 0, };
+static const char32 __uni_decomp_data_0x2f974[] = { 0x4359, 0, };
+static const char32 __uni_decomp_data_0x2f975[] = { 0x262d9, 0, };
+static const char32 __uni_decomp_data_0x2f976[] = { 0x7f7a, 0, };
+static const char32 __uni_decomp_data_0x2f977[] = { 0x2633e, 0, };
+static const char32 __uni_decomp_data_0x2f978[] = { 0x7f95, 0, };
+static const char32 __uni_decomp_data_0x2f979[] = { 0x7ffa, 0, };
+static const char32 __uni_decomp_data_0x2f97a[] = { 0x8005, 0, };
+static const char32 __uni_decomp_data_0x2f97b[] = { 0x264da, 0, };
+static const char32 __uni_decomp_data_0x2f97c[] = { 0x26523, 0, };
+static const char32 __uni_decomp_data_0x2f97d[] = { 0x8060, 0, };
+static const char32 __uni_decomp_data_0x2f97e[] = { 0x265a8, 0, };
+static const char32 __uni_decomp_data_0x2f97f[] = { 0x8070, 0, };
+static const char32 __uni_decomp_data_0x2f980[] = { 0x2335f, 0, };
+static const char32 __uni_decomp_data_0x2f981[] = { 0x43d5, 0, };
+static const char32 __uni_decomp_data_0x2f982[] = { 0x80b2, 0, };
+static const char32 __uni_decomp_data_0x2f983[] = { 0x8103, 0, };
+static const char32 __uni_decomp_data_0x2f984[] = { 0x440b, 0, };
+static const char32 __uni_decomp_data_0x2f985[] = { 0x813e, 0, };
+static const char32 __uni_decomp_data_0x2f986[] = { 0x5ab5, 0, };
+static const char32 __uni_decomp_data_0x2f987[] = { 0x267a7, 0, };
+static const char32 __uni_decomp_data_0x2f988[] = { 0x267b5, 0, };
+static const char32 __uni_decomp_data_0x2f989[] = { 0x23393, 0, };
+static const char32 __uni_decomp_data_0x2f98a[] = { 0x2339c, 0, };
+static const char32 __uni_decomp_data_0x2f98b[] = { 0x8201, 0, };
+static const char32 __uni_decomp_data_0x2f98c[] = { 0x8204, 0, };
+static const char32 __uni_decomp_data_0x2f98d[] = { 0x8f9e, 0, };
+static const char32 __uni_decomp_data_0x2f98e[] = { 0x446b, 0, };
+static const char32 __uni_decomp_data_0x2f98f[] = { 0x8291, 0, };
+static const char32 __uni_decomp_data_0x2f990[] = { 0x828b, 0, };
+static const char32 __uni_decomp_data_0x2f991[] = { 0x829d, 0, };
+static const char32 __uni_decomp_data_0x2f992[] = { 0x52b3, 0, };
+static const char32 __uni_decomp_data_0x2f993[] = { 0x82b1, 0, };
+static const char32 __uni_decomp_data_0x2f994[] = { 0x82b3, 0, };
+static const char32 __uni_decomp_data_0x2f995[] = { 0x82bd, 0, };
+static const char32 __uni_decomp_data_0x2f996[] = { 0x82e6, 0, };
+static const char32 __uni_decomp_data_0x2f997[] = { 0x26b3c, 0, };
+static const char32 __uni_decomp_data_0x2f998[] = { 0x82e5, 0, };
+static const char32 __uni_decomp_data_0x2f999[] = { 0x831d, 0, };
+static const char32 __uni_decomp_data_0x2f99a[] = { 0x8363, 0, };
+static const char32 __uni_decomp_data_0x2f99b[] = { 0x83ad, 0, };
+static const char32 __uni_decomp_data_0x2f99c[] = { 0x8323, 0, };
+static const char32 __uni_decomp_data_0x2f99d[] = { 0x83bd, 0, };
+static const char32 __uni_decomp_data_0x2f99e[] = { 0x83e7, 0, };
+static const char32 __uni_decomp_data_0x2f99f[] = { 0x8457, 0, };
+static const char32 __uni_decomp_data_0x2f9a0[] = { 0x8353, 0, };
+static const char32 __uni_decomp_data_0x2f9a1[] = { 0x83ca, 0, };
+static const char32 __uni_decomp_data_0x2f9a2[] = { 0x83cc, 0, };
+static const char32 __uni_decomp_data_0x2f9a3[] = { 0x83dc, 0, };
+static const char32 __uni_decomp_data_0x2f9a4[] = { 0x26c36, 0, };
+static const char32 __uni_decomp_data_0x2f9a5[] = { 0x26d6b, 0, };
+static const char32 __uni_decomp_data_0x2f9a6[] = { 0x26cd5, 0, };
+static const char32 __uni_decomp_data_0x2f9a7[] = { 0x452b, 0, };
+static const char32 __uni_decomp_data_0x2f9a8[] = { 0x84f1, 0, };
+static const char32 __uni_decomp_data_0x2f9a9[] = { 0x84f3, 0, };
+static const char32 __uni_decomp_data_0x2f9aa[] = { 0x8516, 0, };
+static const char32 __uni_decomp_data_0x2f9ab[] = { 0x273ca, 0, };
+static const char32 __uni_decomp_data_0x2f9ac[] = { 0x8564, 0, };
+static const char32 __uni_decomp_data_0x2f9ad[] = { 0x26f2c, 0, };
+static const char32 __uni_decomp_data_0x2f9ae[] = { 0x455d, 0, };
+static const char32 __uni_decomp_data_0x2f9af[] = { 0x4561, 0, };
+static const char32 __uni_decomp_data_0x2f9b0[] = { 0x26fb1, 0, };
+static const char32 __uni_decomp_data_0x2f9b1[] = { 0x270d2, 0, };
+static const char32 __uni_decomp_data_0x2f9b2[] = { 0x456b, 0, };
+static const char32 __uni_decomp_data_0x2f9b3[] = { 0x8650, 0, };
+static const char32 __uni_decomp_data_0x2f9b4[] = { 0x865c, 0, };
+static const char32 __uni_decomp_data_0x2f9b5[] = { 0x8667, 0, };
+static const char32 __uni_decomp_data_0x2f9b6[] = { 0x8669, 0, };
+static const char32 __uni_decomp_data_0x2f9b7[] = { 0x86a9, 0, };
+static const char32 __uni_decomp_data_0x2f9b8[] = { 0x8688, 0, };
+static const char32 __uni_decomp_data_0x2f9b9[] = { 0x870e, 0, };
+static const char32 __uni_decomp_data_0x2f9ba[] = { 0x86e2, 0, };
+static const char32 __uni_decomp_data_0x2f9bb[] = { 0x8779, 0, };
+static const char32 __uni_decomp_data_0x2f9bc[] = { 0x8728, 0, };
+static const char32 __uni_decomp_data_0x2f9bd[] = { 0x876b, 0, };
+static const char32 __uni_decomp_data_0x2f9be[] = { 0x8786, 0, };
+static const char32 __uni_decomp_data_0x2f9bf[] = { 0x45d7, 0, };
+static const char32 __uni_decomp_data_0x2f9c0[] = { 0x87e1, 0, };
+static const char32 __uni_decomp_data_0x2f9c1[] = { 0x8801, 0, };
+static const char32 __uni_decomp_data_0x2f9c2[] = { 0x45f9, 0, };
+static const char32 __uni_decomp_data_0x2f9c3[] = { 0x8860, 0, };
+static const char32 __uni_decomp_data_0x2f9c4[] = { 0x8863, 0, };
+static const char32 __uni_decomp_data_0x2f9c5[] = { 0x27667, 0, };
+static const char32 __uni_decomp_data_0x2f9c6[] = { 0x88d7, 0, };
+static const char32 __uni_decomp_data_0x2f9c7[] = { 0x88de, 0, };
+static const char32 __uni_decomp_data_0x2f9c8[] = { 0x4635, 0, };
+static const char32 __uni_decomp_data_0x2f9c9[] = { 0x88fa, 0, };
+static const char32 __uni_decomp_data_0x2f9ca[] = { 0x34bb, 0, };
+static const char32 __uni_decomp_data_0x2f9cb[] = { 0x278ae, 0, };
+static const char32 __uni_decomp_data_0x2f9cc[] = { 0x27966, 0, };
+static const char32 __uni_decomp_data_0x2f9cd[] = { 0x46be, 0, };
+static const char32 __uni_decomp_data_0x2f9ce[] = { 0x46c7, 0, };
+static const char32 __uni_decomp_data_0x2f9cf[] = { 0x8aa0, 0, };
+static const char32 __uni_decomp_data_0x2f9d0[] = { 0x8aed, 0, };
+static const char32 __uni_decomp_data_0x2f9d1[] = { 0x8b8a, 0, };
+static const char32 __uni_decomp_data_0x2f9d2[] = { 0x8c55, 0, };
+static const char32 __uni_decomp_data_0x2f9d3[] = { 0x27ca8, 0, };
+static const char32 __uni_decomp_data_0x2f9d4[] = { 0x8cab, 0, };
+static const char32 __uni_decomp_data_0x2f9d5[] = { 0x8cc1, 0, };
+static const char32 __uni_decomp_data_0x2f9d6[] = { 0x8d1b, 0, };
+static const char32 __uni_decomp_data_0x2f9d7[] = { 0x8d77, 0, };
+static const char32 __uni_decomp_data_0x2f9d8[] = { 0x27f2f, 0, };
+static const char32 __uni_decomp_data_0x2f9d9[] = { 0x20804, 0, };
+static const char32 __uni_decomp_data_0x2f9da[] = { 0x8dcb, 0, };
+static const char32 __uni_decomp_data_0x2f9db[] = { 0x8dbc, 0, };
+static const char32 __uni_decomp_data_0x2f9dc[] = { 0x8df0, 0, };
+static const char32 __uni_decomp_data_0x2f9dd[] = { 0x208de, 0, };
+static const char32 __uni_decomp_data_0x2f9de[] = { 0x8ed4, 0, };
+static const char32 __uni_decomp_data_0x2f9df[] = { 0x8f38, 0, };
+static const char32 __uni_decomp_data_0x2f9e0[] = { 0x285d2, 0, };
+static const char32 __uni_decomp_data_0x2f9e1[] = { 0x285ed, 0, };
+static const char32 __uni_decomp_data_0x2f9e2[] = { 0x9094, 0, };
+static const char32 __uni_decomp_data_0x2f9e3[] = { 0x90f1, 0, };
+static const char32 __uni_decomp_data_0x2f9e4[] = { 0x9111, 0, };
+static const char32 __uni_decomp_data_0x2f9e5[] = { 0x2872e, 0, };
+static const char32 __uni_decomp_data_0x2f9e6[] = { 0x911b, 0, };
+static const char32 __uni_decomp_data_0x2f9e7[] = { 0x9238, 0, };
+static const char32 __uni_decomp_data_0x2f9e8[] = { 0x92d7, 0, };
+static const char32 __uni_decomp_data_0x2f9e9[] = { 0x92d8, 0, };
+static const char32 __uni_decomp_data_0x2f9ea[] = { 0x927c, 0, };
+static const char32 __uni_decomp_data_0x2f9eb[] = { 0x93f9, 0, };
+static const char32 __uni_decomp_data_0x2f9ec[] = { 0x9415, 0, };
+static const char32 __uni_decomp_data_0x2f9ed[] = { 0x28bfa, 0, };
+static const char32 __uni_decomp_data_0x2f9ee[] = { 0x958b, 0, };
+static const char32 __uni_decomp_data_0x2f9ef[] = { 0x4995, 0, };
+static const char32 __uni_decomp_data_0x2f9f0[] = { 0x95b7, 0, };
+static const char32 __uni_decomp_data_0x2f9f1[] = { 0x28d77, 0, };
+static const char32 __uni_decomp_data_0x2f9f2[] = { 0x49e6, 0, };
+static const char32 __uni_decomp_data_0x2f9f3[] = { 0x96c3, 0, };
+static const char32 __uni_decomp_data_0x2f9f4[] = { 0x5db2, 0, };
+static const char32 __uni_decomp_data_0x2f9f5[] = { 0x9723, 0, };
+static const char32 __uni_decomp_data_0x2f9f6[] = { 0x29145, 0, };
+static const char32 __uni_decomp_data_0x2f9f7[] = { 0x2921a, 0, };
+static const char32 __uni_decomp_data_0x2f9f8[] = { 0x4a6e, 0, };
+static const char32 __uni_decomp_data_0x2f9f9[] = { 0x4a76, 0, };
+static const char32 __uni_decomp_data_0x2f9fa[] = { 0x97e0, 0, };
+static const char32 __uni_decomp_data_0x2f9fb[] = { 0x2940a, 0, };
+static const char32 __uni_decomp_data_0x2f9fc[] = { 0x4ab2, 0, };
+static const char32 __uni_decomp_data_0x2f9fd[] = { 0x29496, 0, };
+static const char32 __uni_decomp_data_0x2f9fe[] = { 0x980b, 0, };
+static const char32 __uni_decomp_data_0x2f9ff[] = { 0x980b, 0, };
+static const char32 __uni_decomp_data_0x2fa00[] = { 0x9829, 0, };
+static const char32 __uni_decomp_data_0x2fa01[] = { 0x295b6, 0, };
+static const char32 __uni_decomp_data_0x2fa02[] = { 0x98e2, 0, };
+static const char32 __uni_decomp_data_0x2fa03[] = { 0x4b33, 0, };
+static const char32 __uni_decomp_data_0x2fa04[] = { 0x9929, 0, };
+static const char32 __uni_decomp_data_0x2fa05[] = { 0x99a7, 0, };
+static const char32 __uni_decomp_data_0x2fa06[] = { 0x99c2, 0, };
+static const char32 __uni_decomp_data_0x2fa07[] = { 0x99fe, 0, };
+static const char32 __uni_decomp_data_0x2fa08[] = { 0x4bce, 0, };
+static const char32 __uni_decomp_data_0x2fa09[] = { 0x29b30, 0, };
+static const char32 __uni_decomp_data_0x2fa0a[] = { 0x9b12, 0, };
+static const char32 __uni_decomp_data_0x2fa0b[] = { 0x9c40, 0, };
+static const char32 __uni_decomp_data_0x2fa0c[] = { 0x9cfd, 0, };
+static const char32 __uni_decomp_data_0x2fa0d[] = { 0x4cce, 0, };
+static const char32 __uni_decomp_data_0x2fa0e[] = { 0x4ced, 0, };
+static const char32 __uni_decomp_data_0x2fa0f[] = { 0x9d67, 0, };
+static const char32 __uni_decomp_data_0x2fa10[] = { 0x2a0ce, 0, };
+static const char32 __uni_decomp_data_0x2fa11[] = { 0x4cf8, 0, };
+static const char32 __uni_decomp_data_0x2fa12[] = { 0x2a105, 0, };
+static const char32 __uni_decomp_data_0x2fa13[] = { 0x2a20e, 0, };
+static const char32 __uni_decomp_data_0x2fa14[] = { 0x2a291, 0, };
+static const char32 __uni_decomp_data_0x2fa15[] = { 0x9ebb, 0, };
+static const char32 __uni_decomp_data_0x2fa16[] = { 0x4d56, 0, };
+static const char32 __uni_decomp_data_0x2fa17[] = { 0x9ef9, 0, };
+static const char32 __uni_decomp_data_0x2fa18[] = { 0x9efe, 0, };
+static const char32 __uni_decomp_data_0x2fa19[] = { 0x9f05, 0, };
+static const char32 __uni_decomp_data_0x2fa1a[] = { 0x9f0f, 0, };
+static const char32 __uni_decomp_data_0x2fa1b[] = { 0x9f16, 0, };
+static const char32 __uni_decomp_data_0x2fa1c[] = { 0x9f3b, 0, };
+static const char32 __uni_decomp_data_0x2fa1d[] = { 0x2a600, 0, };
+
+
+
+
+static const unichar_data_internal __uni_char_data_2f000[]=
+{
+ { // char 0x2f000,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f001,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f002,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f003,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f004,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f005,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f006,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f007,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f008,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f009,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f00a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f00b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f00c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f00d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f00e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f00f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f010,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f011,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f012,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f013,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f014,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f015,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f016,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f017,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f018,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f019,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f01a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f01b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f01c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f01d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f01e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f01f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f020,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f021,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f022,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f023,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f024,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f025,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f026,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f027,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f028,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f029,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f02a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f02b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f02c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f02d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f02e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f02f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f030,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f031,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f032,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f033,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f034,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f035,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f036,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f037,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f038,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f039,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f03a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f03b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f03c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f03d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f03e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f03f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f040,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f041,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f042,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f043,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f044,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f045,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f046,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f047,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f048,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f049,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f04a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f04b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f04c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f04d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f04e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f04f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f050,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f051,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f052,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f053,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f054,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f055,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f056,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f057,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f058,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f059,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f05a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f05b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f05c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f05d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f05e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f05f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f060,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f061,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f062,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f063,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f064,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f065,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f066,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f067,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f068,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f069,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f06a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f06b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f06c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f06d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f06e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f06f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f070,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f071,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f072,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f073,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f074,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f075,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f076,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f077,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f078,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f079,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f07a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f07b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f07c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f07d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f07e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f07f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f080,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f081,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f082,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f083,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f084,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f085,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f086,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f087,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f088,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f089,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f08a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f08b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f08c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f08d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f08e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f08f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f090,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f091,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f092,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f093,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f094,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f095,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f096,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f097,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f098,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f099,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f09a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f09b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f09c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f09d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f09e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f09f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0a0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0a1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0a2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0a3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0a4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0a5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0a6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0a7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0a8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0a9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0aa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0ab,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0ac,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0ad,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0ae,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0af,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0b0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0b1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0b2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0b3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0b4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0b5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0b6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0b7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0b8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0b9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0ba,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0bb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0bc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0bd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0be,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0bf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0c0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0c1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0c2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0c3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0c4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0c5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0c6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0c7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0c8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0c9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0ca,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0cb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0cc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0cd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0ce,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0cf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0d0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0d1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0d2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0d3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0d4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0d5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0d6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0d7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0d8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0d9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0da,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0db,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0dc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0dd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0de,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0df,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0e0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0e1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0e2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0e3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0e4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0e5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0e6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0e7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0e8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0e9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0ea,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0eb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0ec,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0ed,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0ee,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0ef,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0f0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0f1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0f2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0f3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0f4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0f5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0f6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0f7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0f8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0f9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0fa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0fb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0fc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0fd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0fe,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f0ff,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f100,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f101,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f102,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f103,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f104,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f105,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f106,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f107,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f108,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f109,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f10a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f10b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f10c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f10d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f10e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f10f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f110,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f111,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f112,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f113,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f114,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f115,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f116,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f117,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f118,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f119,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f11a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f11b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f11c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f11d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f11e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f11f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f120,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f121,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f122,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f123,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f124,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f125,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f126,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f127,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f128,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f129,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f12a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f12b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f12c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f12d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f12e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f12f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f130,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f131,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f132,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f133,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f134,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f135,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f136,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f137,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f138,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f139,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f13a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f13b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f13c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f13d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f13e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f13f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f140,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f141,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f142,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f143,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f144,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f145,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f146,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f147,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f148,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f149,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f14a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f14b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f14c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f14d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f14e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f14f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f150,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f151,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f152,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f153,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f154,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f155,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f156,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f157,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f158,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f159,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f15a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f15b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f15c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f15d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f15e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f15f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f160,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f161,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f162,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f163,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f164,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f165,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f166,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f167,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f168,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f169,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f16a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f16b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f16c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f16d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f16e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f16f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f170,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f171,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f172,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f173,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f174,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f175,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f176,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f177,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f178,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f179,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f17a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f17b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f17c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f17d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f17e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f17f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f180,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f181,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f182,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f183,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f184,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f185,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f186,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f187,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f188,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f189,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f18a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f18b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f18c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f18d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f18e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f18f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f190,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f191,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f192,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f193,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f194,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f195,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f196,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f197,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f198,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f199,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f19a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f19b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f19c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f19d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f19e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f19f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1a0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1a1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1a2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1a3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1a4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1a5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1a6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1a7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1a8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1a9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1aa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1ab,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1ac,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1ad,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1ae,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1af,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1b0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1b1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1b2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1b3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1b4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1b5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1b6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1b7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1b8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1b9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1ba,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1bb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1bc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1bd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1be,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1bf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1c0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1c1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1c2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1c3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1c4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1c5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1c6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1c7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1c8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1c9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1ca,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1cb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1cc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1cd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1ce,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1cf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1d0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1d1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1d2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1d3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1d4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1d5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1d6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1d7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1d8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1d9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1da,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1db,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1dc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1dd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1de,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1df,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1e0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1e1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1e2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1e3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1e4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1e5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1e6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1e7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1e8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1e9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1ea,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1eb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1ec,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1ed,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1ee,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1ef,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1f0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1f1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1f2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1f3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1f4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1f5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1f6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1f7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1f8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1f9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1fa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1fb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1fc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1fd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1fe,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f1ff,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f200,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f201,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f202,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f203,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f204,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f205,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f206,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f207,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f208,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f209,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f20a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f20b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f20c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f20d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f20e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f20f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f210,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f211,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f212,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f213,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f214,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f215,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f216,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f217,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f218,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f219,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f21a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f21b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f21c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f21d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f21e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f21f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f220,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f221,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f222,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f223,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f224,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f225,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f226,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f227,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f228,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f229,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f22a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f22b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f22c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f22d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f22e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f22f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f230,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f231,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f232,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f233,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f234,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f235,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f236,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f237,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f238,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f239,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f23a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f23b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f23c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f23d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f23e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f23f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f240,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f241,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f242,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f243,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f244,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f245,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f246,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f247,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f248,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f249,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f24a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f24b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f24c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f24d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f24e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f24f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f250,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f251,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f252,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f253,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f254,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f255,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f256,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f257,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f258,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f259,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f25a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f25b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f25c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f25d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f25e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f25f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f260,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f261,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f262,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f263,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f264,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f265,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f266,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f267,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f268,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f269,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f26a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f26b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f26c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f26d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f26e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f26f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f270,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f271,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f272,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f273,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f274,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f275,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f276,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f277,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f278,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f279,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f27a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f27b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f27c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f27d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f27e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f27f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f280,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f281,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f282,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f283,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f284,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f285,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f286,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f287,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f288,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f289,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f28a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f28b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f28c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f28d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f28e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f28f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f290,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f291,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f292,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f293,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f294,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f295,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f296,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f297,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f298,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f299,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f29a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f29b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f29c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f29d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f29e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f29f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2a0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2a1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2a2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2a3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2a4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2a5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2a6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2a7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2a8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2a9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2aa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2ab,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2ac,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2ad,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2ae,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2af,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2b0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2b1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2b2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2b3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2b4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2b5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2b6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2b7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2b8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2b9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2ba,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2bb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2bc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2bd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2be,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2bf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2c0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2c1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2c2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2c3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2c4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2c5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2c6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2c7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2c8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2c9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2ca,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2cb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2cc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2cd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2ce,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2cf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2d0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2d1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2d2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2d3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2d4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2d5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2d6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2d7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2d8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2d9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2da,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2db,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2dc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2dd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2de,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2df,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2e0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2e1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2e2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2e3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2e4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2e5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2e6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2e7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2e8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2e9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2ea,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2eb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2ec,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2ed,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2ee,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2ef,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2f0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2f1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2f2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2f3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2f4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2f5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2f6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2f7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2f8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2f9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2fa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2fb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2fc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2fd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2fe,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f2ff,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f300,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f301,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f302,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f303,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f304,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f305,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f306,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f307,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f308,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f309,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f30a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f30b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f30c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f30d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f30e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f30f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f310,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f311,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f312,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f313,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f314,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f315,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f316,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f317,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f318,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f319,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f31a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f31b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f31c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f31d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f31e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f31f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f320,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f321,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f322,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f323,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f324,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f325,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f326,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f327,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f328,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f329,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f32a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f32b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f32c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f32d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f32e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f32f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f330,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f331,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f332,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f333,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f334,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f335,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f336,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f337,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f338,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f339,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f33a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f33b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f33c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f33d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f33e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f33f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f340,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f341,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f342,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f343,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f344,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f345,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f346,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f347,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f348,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f349,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f34a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f34b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f34c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f34d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f34e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f34f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f350,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f351,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f352,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f353,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f354,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f355,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f356,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f357,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f358,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f359,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f35a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f35b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f35c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f35d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f35e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f35f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f360,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f361,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f362,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f363,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f364,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f365,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f366,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f367,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f368,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f369,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f36a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f36b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f36c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f36d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f36e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f36f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f370,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f371,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f372,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f373,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f374,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f375,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f376,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f377,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f378,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f379,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f37a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f37b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f37c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f37d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f37e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f37f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f380,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f381,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f382,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f383,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f384,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f385,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f386,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f387,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f388,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f389,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f38a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f38b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f38c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f38d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f38e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f38f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f390,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f391,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f392,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f393,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f394,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f395,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f396,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f397,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f398,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f399,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f39a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f39b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f39c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f39d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f39e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f39f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3a0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3a1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3a2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3a3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3a4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3a5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3a6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3a7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3a8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3a9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3aa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3ab,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3ac,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3ad,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3ae,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3af,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3b0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3b1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3b2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3b3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3b4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3b5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3b6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3b7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3b8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3b9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3ba,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3bb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3bc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3bd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3be,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3bf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3c0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3c1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3c2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3c3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3c4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3c5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3c6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3c7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3c8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3c9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3ca,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3cb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3cc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3cd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3ce,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3cf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3d0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3d1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3d2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3d3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3d4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3d5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3d6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3d7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3d8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3d9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3da,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3db,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3dc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3dd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3de,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3df,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3e0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3e1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3e2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3e3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3e4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3e5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3e6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3e7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3e8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3e9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3ea,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3eb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3ec,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3ed,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3ee,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3ef,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3f0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3f1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3f2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3f3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3f4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3f5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3f6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3f7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3f8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3f9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3fa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3fb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3fc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3fd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3fe,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f3ff,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f400,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f401,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f402,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f403,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f404,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f405,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f406,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f407,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f408,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f409,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f40a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f40b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f40c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f40d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f40e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f40f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f410,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f411,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f412,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f413,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f414,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f415,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f416,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f417,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f418,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f419,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f41a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f41b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f41c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f41d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f41e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f41f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f420,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f421,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f422,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f423,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f424,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f425,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f426,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f427,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f428,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f429,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f42a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f42b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f42c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f42d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f42e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f42f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f430,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f431,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f432,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f433,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f434,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f435,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f436,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f437,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f438,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f439,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f43a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f43b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f43c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f43d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f43e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f43f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f440,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f441,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f442,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f443,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f444,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f445,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f446,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f447,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f448,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f449,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f44a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f44b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f44c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f44d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f44e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f44f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f450,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f451,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f452,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f453,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f454,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f455,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f456,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f457,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f458,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f459,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f45a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f45b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f45c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f45d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f45e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f45f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f460,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f461,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f462,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f463,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f464,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f465,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f466,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f467,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f468,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f469,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f46a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f46b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f46c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f46d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f46e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f46f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f470,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f471,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f472,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f473,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f474,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f475,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f476,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f477,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f478,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f479,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f47a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f47b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f47c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f47d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f47e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f47f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f480,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f481,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f482,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f483,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f484,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f485,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f486,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f487,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f488,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f489,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f48a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f48b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f48c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f48d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f48e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f48f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f490,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f491,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f492,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f493,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f494,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f495,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f496,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f497,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f498,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f499,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f49a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f49b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f49c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f49d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f49e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f49f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4a0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4a1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4a2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4a3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4a4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4a5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4a6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4a7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4a8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4a9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4aa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4ab,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4ac,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4ad,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4ae,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4af,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4b0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4b1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4b2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4b3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4b4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4b5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4b6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4b7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4b8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4b9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4ba,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4bb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4bc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4bd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4be,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4bf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4c0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4c1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4c2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4c3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4c4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4c5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4c6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4c7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4c8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4c9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4ca,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4cb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4cc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4cd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4ce,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4cf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4d0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4d1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4d2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4d3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4d4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4d5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4d6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4d7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4d8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4d9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4da,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4db,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4dc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4dd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4de,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4df,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4e0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4e1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4e2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4e3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4e4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4e5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4e6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4e7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4e8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4e9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4ea,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4eb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4ec,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4ed,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4ee,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4ef,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4f0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4f1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4f2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4f3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4f4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4f5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4f6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4f7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4f8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4f9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4fa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4fb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4fc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4fd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4fe,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f4ff,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f500,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f501,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f502,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f503,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f504,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f505,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f506,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f507,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f508,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f509,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f50a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f50b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f50c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f50d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f50e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f50f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f510,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f511,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f512,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f513,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f514,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f515,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f516,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f517,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f518,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f519,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f51a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f51b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f51c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f51d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f51e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f51f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f520,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f521,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f522,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f523,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f524,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f525,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f526,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f527,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f528,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f529,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f52a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f52b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f52c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f52d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f52e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f52f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f530,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f531,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f532,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f533,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f534,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f535,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f536,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f537,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f538,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f539,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f53a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f53b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f53c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f53d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f53e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f53f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f540,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f541,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f542,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f543,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f544,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f545,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f546,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f547,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f548,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f549,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f54a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f54b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f54c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f54d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f54e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f54f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f550,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f551,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f552,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f553,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f554,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f555,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f556,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f557,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f558,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f559,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f55a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f55b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f55c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f55d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f55e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f55f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f560,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f561,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f562,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f563,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f564,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f565,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f566,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f567,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f568,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f569,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f56a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f56b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f56c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f56d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f56e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f56f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f570,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f571,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f572,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f573,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f574,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f575,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f576,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f577,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f578,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f579,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f57a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f57b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f57c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f57d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f57e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f57f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f580,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f581,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f582,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f583,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f584,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f585,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f586,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f587,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f588,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f589,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f58a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f58b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f58c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f58d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f58e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f58f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f590,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f591,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f592,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f593,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f594,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f595,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f596,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f597,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f598,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f599,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f59a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f59b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f59c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f59d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f59e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f59f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5a0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5a1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5a2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5a3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5a4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5a5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5a6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5a7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5a8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5a9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5aa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5ab,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5ac,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5ad,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5ae,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5af,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5b0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5b1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5b2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5b3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5b4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5b5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5b6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5b7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5b8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5b9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5ba,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5bb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5bc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5bd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5be,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5bf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5c0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5c1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5c2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5c3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5c4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5c5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5c6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5c7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5c8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5c9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5ca,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5cb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5cc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5cd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5ce,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5cf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5d0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5d1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5d2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5d3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5d4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5d5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5d6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5d7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5d8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5d9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5da,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5db,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5dc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5dd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5de,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5df,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5e0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5e1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5e2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5e3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5e4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5e5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5e6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5e7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5e8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5e9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5ea,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5eb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5ec,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5ed,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5ee,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5ef,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5f0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5f1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5f2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5f3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5f4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5f5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5f6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5f7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5f8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5f9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5fa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5fb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5fc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5fd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5fe,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f5ff,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f600,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f601,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f602,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f603,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f604,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f605,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f606,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f607,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f608,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f609,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f60a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f60b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f60c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f60d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f60e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f60f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f610,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f611,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f612,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f613,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f614,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f615,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f616,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f617,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f618,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f619,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f61a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f61b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f61c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f61d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f61e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f61f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f620,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f621,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f622,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f623,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f624,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f625,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f626,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f627,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f628,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f629,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f62a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f62b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f62c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f62d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f62e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f62f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f630,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f631,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f632,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f633,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f634,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f635,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f636,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f637,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f638,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f639,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f63a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f63b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f63c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f63d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f63e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f63f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f640,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f641,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f642,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f643,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f644,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f645,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f646,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f647,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f648,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f649,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f64a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f64b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f64c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f64d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f64e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f64f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f650,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f651,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f652,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f653,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f654,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f655,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f656,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f657,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f658,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f659,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f65a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f65b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f65c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f65d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f65e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f65f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f660,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f661,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f662,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f663,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f664,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f665,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f666,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f667,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f668,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f669,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f66a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f66b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f66c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f66d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f66e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f66f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f670,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f671,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f672,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f673,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f674,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f675,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f676,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f677,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f678,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f679,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f67a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f67b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f67c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f67d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f67e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f67f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f680,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f681,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f682,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f683,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f684,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f685,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f686,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f687,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f688,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f689,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f68a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f68b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f68c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f68d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f68e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f68f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f690,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f691,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f692,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f693,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f694,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f695,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f696,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f697,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f698,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f699,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f69a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f69b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f69c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f69d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f69e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f69f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6a0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6a1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6a2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6a3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6a4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6a5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6a6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6a7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6a8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6a9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6aa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6ab,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6ac,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6ad,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6ae,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6af,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6b0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6b1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6b2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6b3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6b4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6b5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6b6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6b7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6b8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6b9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6ba,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6bb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6bc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6bd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6be,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6bf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6c0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6c1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6c2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6c3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6c4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6c5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6c6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6c7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6c8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6c9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6ca,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6cb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6cc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6cd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6ce,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6cf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6d0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6d1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6d2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6d3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6d4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6d5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6d6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6d7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6d8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6d9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6da,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6db,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6dc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6dd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6de,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6df,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6e0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6e1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6e2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6e3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6e4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6e5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6e6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6e7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6e8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6e9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6ea,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6eb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6ec,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6ed,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6ee,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6ef,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6f0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6f1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6f2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6f3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6f4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6f5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6f6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6f7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6f8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6f9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6fa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6fb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6fc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6fd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6fe,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f6ff,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f700,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f701,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f702,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f703,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f704,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f705,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f706,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f707,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f708,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f709,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f70a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f70b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f70c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f70d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f70e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f70f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f710,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f711,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f712,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f713,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f714,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f715,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f716,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f717,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f718,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f719,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f71a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f71b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f71c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f71d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f71e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f71f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f720,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f721,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f722,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f723,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f724,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f725,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f726,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f727,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f728,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f729,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f72a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f72b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f72c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f72d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f72e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f72f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f730,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f731,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f732,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f733,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f734,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f735,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f736,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f737,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f738,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f739,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f73a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f73b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f73c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f73d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f73e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f73f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f740,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f741,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f742,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f743,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f744,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f745,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f746,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f747,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f748,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f749,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f74a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f74b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f74c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f74d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f74e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f74f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f750,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f751,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f752,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f753,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f754,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f755,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f756,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f757,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f758,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f759,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f75a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f75b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f75c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f75d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f75e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f75f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f760,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f761,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f762,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f763,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f764,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f765,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f766,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f767,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f768,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f769,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f76a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f76b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f76c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f76d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f76e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f76f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f770,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f771,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f772,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f773,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f774,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f775,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f776,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f777,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f778,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f779,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f77a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f77b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f77c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f77d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f77e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f77f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f780,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f781,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f782,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f783,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f784,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f785,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f786,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f787,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f788,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f789,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f78a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f78b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f78c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f78d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f78e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f78f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f790,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f791,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f792,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f793,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f794,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f795,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f796,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f797,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f798,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f799,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f79a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f79b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f79c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f79d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f79e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f79f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7a0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7a1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7a2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7a3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7a4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7a5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7a6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7a7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7a8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7a9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7aa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7ab,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7ac,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7ad,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7ae,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7af,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7b0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7b1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7b2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7b3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7b4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7b5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7b6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7b7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7b8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7b9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7ba,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7bb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7bc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7bd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7be,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7bf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7c0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7c1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7c2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7c3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7c4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7c5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7c6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7c7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7c8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7c9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7ca,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7cb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7cc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7cd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7ce,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7cf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7d0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7d1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7d2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7d3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7d4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7d5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7d6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7d7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7d8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7d9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7da,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7db,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7dc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7dd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7de,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7df,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7e0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7e1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7e2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7e3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7e4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7e5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7e6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7e7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7e8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7e9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7ea,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7eb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7ec,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7ed,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7ee,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7ef,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7f0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7f1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7f2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7f3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7f4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7f5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7f6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7f7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7f8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7f9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7fa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7fb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7fc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7fd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7fe,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f7ff,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f800,
+ "CJK COMPATIBILITY IDEOGRAPH-2F800",
+ __uni_decomp_data_0x2f800,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f801,
+ "CJK COMPATIBILITY IDEOGRAPH-2F801",
+ __uni_decomp_data_0x2f801,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f802,
+ "CJK COMPATIBILITY IDEOGRAPH-2F802",
+ __uni_decomp_data_0x2f802,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f803,
+ "CJK COMPATIBILITY IDEOGRAPH-2F803",
+ __uni_decomp_data_0x2f803,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f804,
+ "CJK COMPATIBILITY IDEOGRAPH-2F804",
+ __uni_decomp_data_0x2f804,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f805,
+ "CJK COMPATIBILITY IDEOGRAPH-2F805",
+ __uni_decomp_data_0x2f805,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f806,
+ "CJK COMPATIBILITY IDEOGRAPH-2F806",
+ __uni_decomp_data_0x2f806,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f807,
+ "CJK COMPATIBILITY IDEOGRAPH-2F807",
+ __uni_decomp_data_0x2f807,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f808,
+ "CJK COMPATIBILITY IDEOGRAPH-2F808",
+ __uni_decomp_data_0x2f808,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f809,
+ "CJK COMPATIBILITY IDEOGRAPH-2F809",
+ __uni_decomp_data_0x2f809,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f80a,
+ "CJK COMPATIBILITY IDEOGRAPH-2F80A",
+ __uni_decomp_data_0x2f80a,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f80b,
+ "CJK COMPATIBILITY IDEOGRAPH-2F80B",
+ __uni_decomp_data_0x2f80b,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f80c,
+ "CJK COMPATIBILITY IDEOGRAPH-2F80C",
+ __uni_decomp_data_0x2f80c,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f80d,
+ "CJK COMPATIBILITY IDEOGRAPH-2F80D",
+ __uni_decomp_data_0x2f80d,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f80e,
+ "CJK COMPATIBILITY IDEOGRAPH-2F80E",
+ __uni_decomp_data_0x2f80e,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f80f,
+ "CJK COMPATIBILITY IDEOGRAPH-2F80F",
+ __uni_decomp_data_0x2f80f,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f810,
+ "CJK COMPATIBILITY IDEOGRAPH-2F810",
+ __uni_decomp_data_0x2f810,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f811,
+ "CJK COMPATIBILITY IDEOGRAPH-2F811",
+ __uni_decomp_data_0x2f811,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f812,
+ "CJK COMPATIBILITY IDEOGRAPH-2F812",
+ __uni_decomp_data_0x2f812,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f813,
+ "CJK COMPATIBILITY IDEOGRAPH-2F813",
+ __uni_decomp_data_0x2f813,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f814,
+ "CJK COMPATIBILITY IDEOGRAPH-2F814",
+ __uni_decomp_data_0x2f814,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f815,
+ "CJK COMPATIBILITY IDEOGRAPH-2F815",
+ __uni_decomp_data_0x2f815,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f816,
+ "CJK COMPATIBILITY IDEOGRAPH-2F816",
+ __uni_decomp_data_0x2f816,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f817,
+ "CJK COMPATIBILITY IDEOGRAPH-2F817",
+ __uni_decomp_data_0x2f817,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f818,
+ "CJK COMPATIBILITY IDEOGRAPH-2F818",
+ __uni_decomp_data_0x2f818,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f819,
+ "CJK COMPATIBILITY IDEOGRAPH-2F819",
+ __uni_decomp_data_0x2f819,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f81a,
+ "CJK COMPATIBILITY IDEOGRAPH-2F81A",
+ __uni_decomp_data_0x2f81a,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f81b,
+ "CJK COMPATIBILITY IDEOGRAPH-2F81B",
+ __uni_decomp_data_0x2f81b,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f81c,
+ "CJK COMPATIBILITY IDEOGRAPH-2F81C",
+ __uni_decomp_data_0x2f81c,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f81d,
+ "CJK COMPATIBILITY IDEOGRAPH-2F81D",
+ __uni_decomp_data_0x2f81d,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f81e,
+ "CJK COMPATIBILITY IDEOGRAPH-2F81E",
+ __uni_decomp_data_0x2f81e,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f81f,
+ "CJK COMPATIBILITY IDEOGRAPH-2F81F",
+ __uni_decomp_data_0x2f81f,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f820,
+ "CJK COMPATIBILITY IDEOGRAPH-2F820",
+ __uni_decomp_data_0x2f820,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f821,
+ "CJK COMPATIBILITY IDEOGRAPH-2F821",
+ __uni_decomp_data_0x2f821,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f822,
+ "CJK COMPATIBILITY IDEOGRAPH-2F822",
+ __uni_decomp_data_0x2f822,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f823,
+ "CJK COMPATIBILITY IDEOGRAPH-2F823",
+ __uni_decomp_data_0x2f823,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f824,
+ "CJK COMPATIBILITY IDEOGRAPH-2F824",
+ __uni_decomp_data_0x2f824,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f825,
+ "CJK COMPATIBILITY IDEOGRAPH-2F825",
+ __uni_decomp_data_0x2f825,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f826,
+ "CJK COMPATIBILITY IDEOGRAPH-2F826",
+ __uni_decomp_data_0x2f826,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f827,
+ "CJK COMPATIBILITY IDEOGRAPH-2F827",
+ __uni_decomp_data_0x2f827,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f828,
+ "CJK COMPATIBILITY IDEOGRAPH-2F828",
+ __uni_decomp_data_0x2f828,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f829,
+ "CJK COMPATIBILITY IDEOGRAPH-2F829",
+ __uni_decomp_data_0x2f829,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f82a,
+ "CJK COMPATIBILITY IDEOGRAPH-2F82A",
+ __uni_decomp_data_0x2f82a,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f82b,
+ "CJK COMPATIBILITY IDEOGRAPH-2F82B",
+ __uni_decomp_data_0x2f82b,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f82c,
+ "CJK COMPATIBILITY IDEOGRAPH-2F82C",
+ __uni_decomp_data_0x2f82c,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f82d,
+ "CJK COMPATIBILITY IDEOGRAPH-2F82D",
+ __uni_decomp_data_0x2f82d,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f82e,
+ "CJK COMPATIBILITY IDEOGRAPH-2F82E",
+ __uni_decomp_data_0x2f82e,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f82f,
+ "CJK COMPATIBILITY IDEOGRAPH-2F82F",
+ __uni_decomp_data_0x2f82f,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f830,
+ "CJK COMPATIBILITY IDEOGRAPH-2F830",
+ __uni_decomp_data_0x2f830,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f831,
+ "CJK COMPATIBILITY IDEOGRAPH-2F831",
+ __uni_decomp_data_0x2f831,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f832,
+ "CJK COMPATIBILITY IDEOGRAPH-2F832",
+ __uni_decomp_data_0x2f832,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f833,
+ "CJK COMPATIBILITY IDEOGRAPH-2F833",
+ __uni_decomp_data_0x2f833,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f834,
+ "CJK COMPATIBILITY IDEOGRAPH-2F834",
+ __uni_decomp_data_0x2f834,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f835,
+ "CJK COMPATIBILITY IDEOGRAPH-2F835",
+ __uni_decomp_data_0x2f835,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f836,
+ "CJK COMPATIBILITY IDEOGRAPH-2F836",
+ __uni_decomp_data_0x2f836,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f837,
+ "CJK COMPATIBILITY IDEOGRAPH-2F837",
+ __uni_decomp_data_0x2f837,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f838,
+ "CJK COMPATIBILITY IDEOGRAPH-2F838",
+ __uni_decomp_data_0x2f838,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f839,
+ "CJK COMPATIBILITY IDEOGRAPH-2F839",
+ __uni_decomp_data_0x2f839,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f83a,
+ "CJK COMPATIBILITY IDEOGRAPH-2F83A",
+ __uni_decomp_data_0x2f83a,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f83b,
+ "CJK COMPATIBILITY IDEOGRAPH-2F83B",
+ __uni_decomp_data_0x2f83b,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f83c,
+ "CJK COMPATIBILITY IDEOGRAPH-2F83C",
+ __uni_decomp_data_0x2f83c,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f83d,
+ "CJK COMPATIBILITY IDEOGRAPH-2F83D",
+ __uni_decomp_data_0x2f83d,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f83e,
+ "CJK COMPATIBILITY IDEOGRAPH-2F83E",
+ __uni_decomp_data_0x2f83e,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f83f,
+ "CJK COMPATIBILITY IDEOGRAPH-2F83F",
+ __uni_decomp_data_0x2f83f,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f840,
+ "CJK COMPATIBILITY IDEOGRAPH-2F840",
+ __uni_decomp_data_0x2f840,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f841,
+ "CJK COMPATIBILITY IDEOGRAPH-2F841",
+ __uni_decomp_data_0x2f841,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f842,
+ "CJK COMPATIBILITY IDEOGRAPH-2F842",
+ __uni_decomp_data_0x2f842,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f843,
+ "CJK COMPATIBILITY IDEOGRAPH-2F843",
+ __uni_decomp_data_0x2f843,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f844,
+ "CJK COMPATIBILITY IDEOGRAPH-2F844",
+ __uni_decomp_data_0x2f844,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f845,
+ "CJK COMPATIBILITY IDEOGRAPH-2F845",
+ __uni_decomp_data_0x2f845,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f846,
+ "CJK COMPATIBILITY IDEOGRAPH-2F846",
+ __uni_decomp_data_0x2f846,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f847,
+ "CJK COMPATIBILITY IDEOGRAPH-2F847",
+ __uni_decomp_data_0x2f847,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f848,
+ "CJK COMPATIBILITY IDEOGRAPH-2F848",
+ __uni_decomp_data_0x2f848,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f849,
+ "CJK COMPATIBILITY IDEOGRAPH-2F849",
+ __uni_decomp_data_0x2f849,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f84a,
+ "CJK COMPATIBILITY IDEOGRAPH-2F84A",
+ __uni_decomp_data_0x2f84a,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f84b,
+ "CJK COMPATIBILITY IDEOGRAPH-2F84B",
+ __uni_decomp_data_0x2f84b,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f84c,
+ "CJK COMPATIBILITY IDEOGRAPH-2F84C",
+ __uni_decomp_data_0x2f84c,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f84d,
+ "CJK COMPATIBILITY IDEOGRAPH-2F84D",
+ __uni_decomp_data_0x2f84d,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f84e,
+ "CJK COMPATIBILITY IDEOGRAPH-2F84E",
+ __uni_decomp_data_0x2f84e,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f84f,
+ "CJK COMPATIBILITY IDEOGRAPH-2F84F",
+ __uni_decomp_data_0x2f84f,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f850,
+ "CJK COMPATIBILITY IDEOGRAPH-2F850",
+ __uni_decomp_data_0x2f850,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f851,
+ "CJK COMPATIBILITY IDEOGRAPH-2F851",
+ __uni_decomp_data_0x2f851,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f852,
+ "CJK COMPATIBILITY IDEOGRAPH-2F852",
+ __uni_decomp_data_0x2f852,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f853,
+ "CJK COMPATIBILITY IDEOGRAPH-2F853",
+ __uni_decomp_data_0x2f853,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f854,
+ "CJK COMPATIBILITY IDEOGRAPH-2F854",
+ __uni_decomp_data_0x2f854,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f855,
+ "CJK COMPATIBILITY IDEOGRAPH-2F855",
+ __uni_decomp_data_0x2f855,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f856,
+ "CJK COMPATIBILITY IDEOGRAPH-2F856",
+ __uni_decomp_data_0x2f856,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f857,
+ "CJK COMPATIBILITY IDEOGRAPH-2F857",
+ __uni_decomp_data_0x2f857,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f858,
+ "CJK COMPATIBILITY IDEOGRAPH-2F858",
+ __uni_decomp_data_0x2f858,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f859,
+ "CJK COMPATIBILITY IDEOGRAPH-2F859",
+ __uni_decomp_data_0x2f859,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f85a,
+ "CJK COMPATIBILITY IDEOGRAPH-2F85A",
+ __uni_decomp_data_0x2f85a,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f85b,
+ "CJK COMPATIBILITY IDEOGRAPH-2F85B",
+ __uni_decomp_data_0x2f85b,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f85c,
+ "CJK COMPATIBILITY IDEOGRAPH-2F85C",
+ __uni_decomp_data_0x2f85c,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f85d,
+ "CJK COMPATIBILITY IDEOGRAPH-2F85D",
+ __uni_decomp_data_0x2f85d,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f85e,
+ "CJK COMPATIBILITY IDEOGRAPH-2F85E",
+ __uni_decomp_data_0x2f85e,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f85f,
+ "CJK COMPATIBILITY IDEOGRAPH-2F85F",
+ __uni_decomp_data_0x2f85f,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f860,
+ "CJK COMPATIBILITY IDEOGRAPH-2F860",
+ __uni_decomp_data_0x2f860,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f861,
+ "CJK COMPATIBILITY IDEOGRAPH-2F861",
+ __uni_decomp_data_0x2f861,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f862,
+ "CJK COMPATIBILITY IDEOGRAPH-2F862",
+ __uni_decomp_data_0x2f862,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f863,
+ "CJK COMPATIBILITY IDEOGRAPH-2F863",
+ __uni_decomp_data_0x2f863,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f864,
+ "CJK COMPATIBILITY IDEOGRAPH-2F864",
+ __uni_decomp_data_0x2f864,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f865,
+ "CJK COMPATIBILITY IDEOGRAPH-2F865",
+ __uni_decomp_data_0x2f865,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f866,
+ "CJK COMPATIBILITY IDEOGRAPH-2F866",
+ __uni_decomp_data_0x2f866,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f867,
+ "CJK COMPATIBILITY IDEOGRAPH-2F867",
+ __uni_decomp_data_0x2f867,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f868,
+ "CJK COMPATIBILITY IDEOGRAPH-2F868",
+ __uni_decomp_data_0x2f868,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f869,
+ "CJK COMPATIBILITY IDEOGRAPH-2F869",
+ __uni_decomp_data_0x2f869,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f86a,
+ "CJK COMPATIBILITY IDEOGRAPH-2F86A",
+ __uni_decomp_data_0x2f86a,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f86b,
+ "CJK COMPATIBILITY IDEOGRAPH-2F86B",
+ __uni_decomp_data_0x2f86b,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f86c,
+ "CJK COMPATIBILITY IDEOGRAPH-2F86C",
+ __uni_decomp_data_0x2f86c,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f86d,
+ "CJK COMPATIBILITY IDEOGRAPH-2F86D",
+ __uni_decomp_data_0x2f86d,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f86e,
+ "CJK COMPATIBILITY IDEOGRAPH-2F86E",
+ __uni_decomp_data_0x2f86e,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f86f,
+ "CJK COMPATIBILITY IDEOGRAPH-2F86F",
+ __uni_decomp_data_0x2f86f,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f870,
+ "CJK COMPATIBILITY IDEOGRAPH-2F870",
+ __uni_decomp_data_0x2f870,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f871,
+ "CJK COMPATIBILITY IDEOGRAPH-2F871",
+ __uni_decomp_data_0x2f871,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f872,
+ "CJK COMPATIBILITY IDEOGRAPH-2F872",
+ __uni_decomp_data_0x2f872,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f873,
+ "CJK COMPATIBILITY IDEOGRAPH-2F873",
+ __uni_decomp_data_0x2f873,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f874,
+ "CJK COMPATIBILITY IDEOGRAPH-2F874",
+ __uni_decomp_data_0x2f874,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f875,
+ "CJK COMPATIBILITY IDEOGRAPH-2F875",
+ __uni_decomp_data_0x2f875,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f876,
+ "CJK COMPATIBILITY IDEOGRAPH-2F876",
+ __uni_decomp_data_0x2f876,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f877,
+ "CJK COMPATIBILITY IDEOGRAPH-2F877",
+ __uni_decomp_data_0x2f877,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f878,
+ "CJK COMPATIBILITY IDEOGRAPH-2F878",
+ __uni_decomp_data_0x2f878,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f879,
+ "CJK COMPATIBILITY IDEOGRAPH-2F879",
+ __uni_decomp_data_0x2f879,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f87a,
+ "CJK COMPATIBILITY IDEOGRAPH-2F87A",
+ __uni_decomp_data_0x2f87a,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f87b,
+ "CJK COMPATIBILITY IDEOGRAPH-2F87B",
+ __uni_decomp_data_0x2f87b,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f87c,
+ "CJK COMPATIBILITY IDEOGRAPH-2F87C",
+ __uni_decomp_data_0x2f87c,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f87d,
+ "CJK COMPATIBILITY IDEOGRAPH-2F87D",
+ __uni_decomp_data_0x2f87d,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f87e,
+ "CJK COMPATIBILITY IDEOGRAPH-2F87E",
+ __uni_decomp_data_0x2f87e,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f87f,
+ "CJK COMPATIBILITY IDEOGRAPH-2F87F",
+ __uni_decomp_data_0x2f87f,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f880,
+ "CJK COMPATIBILITY IDEOGRAPH-2F880",
+ __uni_decomp_data_0x2f880,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f881,
+ "CJK COMPATIBILITY IDEOGRAPH-2F881",
+ __uni_decomp_data_0x2f881,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f882,
+ "CJK COMPATIBILITY IDEOGRAPH-2F882",
+ __uni_decomp_data_0x2f882,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f883,
+ "CJK COMPATIBILITY IDEOGRAPH-2F883",
+ __uni_decomp_data_0x2f883,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f884,
+ "CJK COMPATIBILITY IDEOGRAPH-2F884",
+ __uni_decomp_data_0x2f884,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f885,
+ "CJK COMPATIBILITY IDEOGRAPH-2F885",
+ __uni_decomp_data_0x2f885,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f886,
+ "CJK COMPATIBILITY IDEOGRAPH-2F886",
+ __uni_decomp_data_0x2f886,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f887,
+ "CJK COMPATIBILITY IDEOGRAPH-2F887",
+ __uni_decomp_data_0x2f887,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f888,
+ "CJK COMPATIBILITY IDEOGRAPH-2F888",
+ __uni_decomp_data_0x2f888,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f889,
+ "CJK COMPATIBILITY IDEOGRAPH-2F889",
+ __uni_decomp_data_0x2f889,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f88a,
+ "CJK COMPATIBILITY IDEOGRAPH-2F88A",
+ __uni_decomp_data_0x2f88a,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f88b,
+ "CJK COMPATIBILITY IDEOGRAPH-2F88B",
+ __uni_decomp_data_0x2f88b,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f88c,
+ "CJK COMPATIBILITY IDEOGRAPH-2F88C",
+ __uni_decomp_data_0x2f88c,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f88d,
+ "CJK COMPATIBILITY IDEOGRAPH-2F88D",
+ __uni_decomp_data_0x2f88d,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f88e,
+ "CJK COMPATIBILITY IDEOGRAPH-2F88E",
+ __uni_decomp_data_0x2f88e,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f88f,
+ "CJK COMPATIBILITY IDEOGRAPH-2F88F",
+ __uni_decomp_data_0x2f88f,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f890,
+ "CJK COMPATIBILITY IDEOGRAPH-2F890",
+ __uni_decomp_data_0x2f890,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f891,
+ "CJK COMPATIBILITY IDEOGRAPH-2F891",
+ __uni_decomp_data_0x2f891,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f892,
+ "CJK COMPATIBILITY IDEOGRAPH-2F892",
+ __uni_decomp_data_0x2f892,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f893,
+ "CJK COMPATIBILITY IDEOGRAPH-2F893",
+ __uni_decomp_data_0x2f893,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f894,
+ "CJK COMPATIBILITY IDEOGRAPH-2F894",
+ __uni_decomp_data_0x2f894,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f895,
+ "CJK COMPATIBILITY IDEOGRAPH-2F895",
+ __uni_decomp_data_0x2f895,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f896,
+ "CJK COMPATIBILITY IDEOGRAPH-2F896",
+ __uni_decomp_data_0x2f896,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f897,
+ "CJK COMPATIBILITY IDEOGRAPH-2F897",
+ __uni_decomp_data_0x2f897,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f898,
+ "CJK COMPATIBILITY IDEOGRAPH-2F898",
+ __uni_decomp_data_0x2f898,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f899,
+ "CJK COMPATIBILITY IDEOGRAPH-2F899",
+ __uni_decomp_data_0x2f899,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f89a,
+ "CJK COMPATIBILITY IDEOGRAPH-2F89A",
+ __uni_decomp_data_0x2f89a,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f89b,
+ "CJK COMPATIBILITY IDEOGRAPH-2F89B",
+ __uni_decomp_data_0x2f89b,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f89c,
+ "CJK COMPATIBILITY IDEOGRAPH-2F89C",
+ __uni_decomp_data_0x2f89c,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f89d,
+ "CJK COMPATIBILITY IDEOGRAPH-2F89D",
+ __uni_decomp_data_0x2f89d,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f89e,
+ "CJK COMPATIBILITY IDEOGRAPH-2F89E",
+ __uni_decomp_data_0x2f89e,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f89f,
+ "CJK COMPATIBILITY IDEOGRAPH-2F89F",
+ __uni_decomp_data_0x2f89f,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8a0,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8A0",
+ __uni_decomp_data_0x2f8a0,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8a1,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8A1",
+ __uni_decomp_data_0x2f8a1,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8a2,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8A2",
+ __uni_decomp_data_0x2f8a2,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8a3,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8A3",
+ __uni_decomp_data_0x2f8a3,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8a4,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8A4",
+ __uni_decomp_data_0x2f8a4,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8a5,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8A5",
+ __uni_decomp_data_0x2f8a5,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8a6,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8A6",
+ __uni_decomp_data_0x2f8a6,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8a7,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8A7",
+ __uni_decomp_data_0x2f8a7,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8a8,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8A8",
+ __uni_decomp_data_0x2f8a8,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8a9,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8A9",
+ __uni_decomp_data_0x2f8a9,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8aa,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8AA",
+ __uni_decomp_data_0x2f8aa,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8ab,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8AB",
+ __uni_decomp_data_0x2f8ab,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8ac,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8AC",
+ __uni_decomp_data_0x2f8ac,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8ad,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8AD",
+ __uni_decomp_data_0x2f8ad,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8ae,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8AE",
+ __uni_decomp_data_0x2f8ae,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8af,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8AF",
+ __uni_decomp_data_0x2f8af,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8b0,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8B0",
+ __uni_decomp_data_0x2f8b0,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8b1,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8B1",
+ __uni_decomp_data_0x2f8b1,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8b2,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8B2",
+ __uni_decomp_data_0x2f8b2,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8b3,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8B3",
+ __uni_decomp_data_0x2f8b3,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8b4,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8B4",
+ __uni_decomp_data_0x2f8b4,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8b5,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8B5",
+ __uni_decomp_data_0x2f8b5,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8b6,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8B6",
+ __uni_decomp_data_0x2f8b6,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8b7,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8B7",
+ __uni_decomp_data_0x2f8b7,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8b8,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8B8",
+ __uni_decomp_data_0x2f8b8,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8b9,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8B9",
+ __uni_decomp_data_0x2f8b9,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8ba,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8BA",
+ __uni_decomp_data_0x2f8ba,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8bb,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8BB",
+ __uni_decomp_data_0x2f8bb,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8bc,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8BC",
+ __uni_decomp_data_0x2f8bc,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8bd,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8BD",
+ __uni_decomp_data_0x2f8bd,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8be,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8BE",
+ __uni_decomp_data_0x2f8be,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8bf,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8BF",
+ __uni_decomp_data_0x2f8bf,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8c0,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8C0",
+ __uni_decomp_data_0x2f8c0,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8c1,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8C1",
+ __uni_decomp_data_0x2f8c1,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8c2,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8C2",
+ __uni_decomp_data_0x2f8c2,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8c3,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8C3",
+ __uni_decomp_data_0x2f8c3,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8c4,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8C4",
+ __uni_decomp_data_0x2f8c4,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8c5,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8C5",
+ __uni_decomp_data_0x2f8c5,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8c6,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8C6",
+ __uni_decomp_data_0x2f8c6,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8c7,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8C7",
+ __uni_decomp_data_0x2f8c7,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8c8,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8C8",
+ __uni_decomp_data_0x2f8c8,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8c9,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8C9",
+ __uni_decomp_data_0x2f8c9,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8ca,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8CA",
+ __uni_decomp_data_0x2f8ca,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8cb,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8CB",
+ __uni_decomp_data_0x2f8cb,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8cc,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8CC",
+ __uni_decomp_data_0x2f8cc,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8cd,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8CD",
+ __uni_decomp_data_0x2f8cd,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8ce,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8CE",
+ __uni_decomp_data_0x2f8ce,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8cf,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8CF",
+ __uni_decomp_data_0x2f8cf,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8d0,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8D0",
+ __uni_decomp_data_0x2f8d0,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8d1,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8D1",
+ __uni_decomp_data_0x2f8d1,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8d2,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8D2",
+ __uni_decomp_data_0x2f8d2,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8d3,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8D3",
+ __uni_decomp_data_0x2f8d3,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8d4,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8D4",
+ __uni_decomp_data_0x2f8d4,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8d5,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8D5",
+ __uni_decomp_data_0x2f8d5,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8d6,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8D6",
+ __uni_decomp_data_0x2f8d6,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8d7,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8D7",
+ __uni_decomp_data_0x2f8d7,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8d8,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8D8",
+ __uni_decomp_data_0x2f8d8,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8d9,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8D9",
+ __uni_decomp_data_0x2f8d9,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8da,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8DA",
+ __uni_decomp_data_0x2f8da,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8db,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8DB",
+ __uni_decomp_data_0x2f8db,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8dc,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8DC",
+ __uni_decomp_data_0x2f8dc,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8dd,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8DD",
+ __uni_decomp_data_0x2f8dd,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8de,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8DE",
+ __uni_decomp_data_0x2f8de,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8df,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8DF",
+ __uni_decomp_data_0x2f8df,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8e0,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8E0",
+ __uni_decomp_data_0x2f8e0,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8e1,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8E1",
+ __uni_decomp_data_0x2f8e1,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8e2,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8E2",
+ __uni_decomp_data_0x2f8e2,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8e3,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8E3",
+ __uni_decomp_data_0x2f8e3,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8e4,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8E4",
+ __uni_decomp_data_0x2f8e4,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8e5,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8E5",
+ __uni_decomp_data_0x2f8e5,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8e6,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8E6",
+ __uni_decomp_data_0x2f8e6,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8e7,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8E7",
+ __uni_decomp_data_0x2f8e7,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8e8,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8E8",
+ __uni_decomp_data_0x2f8e8,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8e9,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8E9",
+ __uni_decomp_data_0x2f8e9,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8ea,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8EA",
+ __uni_decomp_data_0x2f8ea,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8eb,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8EB",
+ __uni_decomp_data_0x2f8eb,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8ec,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8EC",
+ __uni_decomp_data_0x2f8ec,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8ed,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8ED",
+ __uni_decomp_data_0x2f8ed,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8ee,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8EE",
+ __uni_decomp_data_0x2f8ee,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8ef,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8EF",
+ __uni_decomp_data_0x2f8ef,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8f0,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8F0",
+ __uni_decomp_data_0x2f8f0,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8f1,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8F1",
+ __uni_decomp_data_0x2f8f1,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8f2,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8F2",
+ __uni_decomp_data_0x2f8f2,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8f3,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8F3",
+ __uni_decomp_data_0x2f8f3,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8f4,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8F4",
+ __uni_decomp_data_0x2f8f4,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8f5,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8F5",
+ __uni_decomp_data_0x2f8f5,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8f6,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8F6",
+ __uni_decomp_data_0x2f8f6,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8f7,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8F7",
+ __uni_decomp_data_0x2f8f7,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8f8,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8F8",
+ __uni_decomp_data_0x2f8f8,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8f9,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8F9",
+ __uni_decomp_data_0x2f8f9,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8fa,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8FA",
+ __uni_decomp_data_0x2f8fa,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8fb,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8FB",
+ __uni_decomp_data_0x2f8fb,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8fc,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8FC",
+ __uni_decomp_data_0x2f8fc,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8fd,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8FD",
+ __uni_decomp_data_0x2f8fd,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8fe,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8FE",
+ __uni_decomp_data_0x2f8fe,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f8ff,
+ "CJK COMPATIBILITY IDEOGRAPH-2F8FF",
+ __uni_decomp_data_0x2f8ff,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f900,
+ "CJK COMPATIBILITY IDEOGRAPH-2F900",
+ __uni_decomp_data_0x2f900,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f901,
+ "CJK COMPATIBILITY IDEOGRAPH-2F901",
+ __uni_decomp_data_0x2f901,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f902,
+ "CJK COMPATIBILITY IDEOGRAPH-2F902",
+ __uni_decomp_data_0x2f902,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f903,
+ "CJK COMPATIBILITY IDEOGRAPH-2F903",
+ __uni_decomp_data_0x2f903,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f904,
+ "CJK COMPATIBILITY IDEOGRAPH-2F904",
+ __uni_decomp_data_0x2f904,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f905,
+ "CJK COMPATIBILITY IDEOGRAPH-2F905",
+ __uni_decomp_data_0x2f905,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f906,
+ "CJK COMPATIBILITY IDEOGRAPH-2F906",
+ __uni_decomp_data_0x2f906,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f907,
+ "CJK COMPATIBILITY IDEOGRAPH-2F907",
+ __uni_decomp_data_0x2f907,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f908,
+ "CJK COMPATIBILITY IDEOGRAPH-2F908",
+ __uni_decomp_data_0x2f908,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f909,
+ "CJK COMPATIBILITY IDEOGRAPH-2F909",
+ __uni_decomp_data_0x2f909,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f90a,
+ "CJK COMPATIBILITY IDEOGRAPH-2F90A",
+ __uni_decomp_data_0x2f90a,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f90b,
+ "CJK COMPATIBILITY IDEOGRAPH-2F90B",
+ __uni_decomp_data_0x2f90b,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f90c,
+ "CJK COMPATIBILITY IDEOGRAPH-2F90C",
+ __uni_decomp_data_0x2f90c,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f90d,
+ "CJK COMPATIBILITY IDEOGRAPH-2F90D",
+ __uni_decomp_data_0x2f90d,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f90e,
+ "CJK COMPATIBILITY IDEOGRAPH-2F90E",
+ __uni_decomp_data_0x2f90e,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f90f,
+ "CJK COMPATIBILITY IDEOGRAPH-2F90F",
+ __uni_decomp_data_0x2f90f,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f910,
+ "CJK COMPATIBILITY IDEOGRAPH-2F910",
+ __uni_decomp_data_0x2f910,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f911,
+ "CJK COMPATIBILITY IDEOGRAPH-2F911",
+ __uni_decomp_data_0x2f911,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f912,
+ "CJK COMPATIBILITY IDEOGRAPH-2F912",
+ __uni_decomp_data_0x2f912,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f913,
+ "CJK COMPATIBILITY IDEOGRAPH-2F913",
+ __uni_decomp_data_0x2f913,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f914,
+ "CJK COMPATIBILITY IDEOGRAPH-2F914",
+ __uni_decomp_data_0x2f914,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f915,
+ "CJK COMPATIBILITY IDEOGRAPH-2F915",
+ __uni_decomp_data_0x2f915,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f916,
+ "CJK COMPATIBILITY IDEOGRAPH-2F916",
+ __uni_decomp_data_0x2f916,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f917,
+ "CJK COMPATIBILITY IDEOGRAPH-2F917",
+ __uni_decomp_data_0x2f917,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f918,
+ "CJK COMPATIBILITY IDEOGRAPH-2F918",
+ __uni_decomp_data_0x2f918,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f919,
+ "CJK COMPATIBILITY IDEOGRAPH-2F919",
+ __uni_decomp_data_0x2f919,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f91a,
+ "CJK COMPATIBILITY IDEOGRAPH-2F91A",
+ __uni_decomp_data_0x2f91a,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f91b,
+ "CJK COMPATIBILITY IDEOGRAPH-2F91B",
+ __uni_decomp_data_0x2f91b,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f91c,
+ "CJK COMPATIBILITY IDEOGRAPH-2F91C",
+ __uni_decomp_data_0x2f91c,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f91d,
+ "CJK COMPATIBILITY IDEOGRAPH-2F91D",
+ __uni_decomp_data_0x2f91d,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f91e,
+ "CJK COMPATIBILITY IDEOGRAPH-2F91E",
+ __uni_decomp_data_0x2f91e,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f91f,
+ "CJK COMPATIBILITY IDEOGRAPH-2F91F",
+ __uni_decomp_data_0x2f91f,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f920,
+ "CJK COMPATIBILITY IDEOGRAPH-2F920",
+ __uni_decomp_data_0x2f920,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f921,
+ "CJK COMPATIBILITY IDEOGRAPH-2F921",
+ __uni_decomp_data_0x2f921,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f922,
+ "CJK COMPATIBILITY IDEOGRAPH-2F922",
+ __uni_decomp_data_0x2f922,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f923,
+ "CJK COMPATIBILITY IDEOGRAPH-2F923",
+ __uni_decomp_data_0x2f923,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f924,
+ "CJK COMPATIBILITY IDEOGRAPH-2F924",
+ __uni_decomp_data_0x2f924,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f925,
+ "CJK COMPATIBILITY IDEOGRAPH-2F925",
+ __uni_decomp_data_0x2f925,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f926,
+ "CJK COMPATIBILITY IDEOGRAPH-2F926",
+ __uni_decomp_data_0x2f926,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f927,
+ "CJK COMPATIBILITY IDEOGRAPH-2F927",
+ __uni_decomp_data_0x2f927,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f928,
+ "CJK COMPATIBILITY IDEOGRAPH-2F928",
+ __uni_decomp_data_0x2f928,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f929,
+ "CJK COMPATIBILITY IDEOGRAPH-2F929",
+ __uni_decomp_data_0x2f929,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f92a,
+ "CJK COMPATIBILITY IDEOGRAPH-2F92A",
+ __uni_decomp_data_0x2f92a,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f92b,
+ "CJK COMPATIBILITY IDEOGRAPH-2F92B",
+ __uni_decomp_data_0x2f92b,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f92c,
+ "CJK COMPATIBILITY IDEOGRAPH-2F92C",
+ __uni_decomp_data_0x2f92c,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f92d,
+ "CJK COMPATIBILITY IDEOGRAPH-2F92D",
+ __uni_decomp_data_0x2f92d,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f92e,
+ "CJK COMPATIBILITY IDEOGRAPH-2F92E",
+ __uni_decomp_data_0x2f92e,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f92f,
+ "CJK COMPATIBILITY IDEOGRAPH-2F92F",
+ __uni_decomp_data_0x2f92f,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f930,
+ "CJK COMPATIBILITY IDEOGRAPH-2F930",
+ __uni_decomp_data_0x2f930,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f931,
+ "CJK COMPATIBILITY IDEOGRAPH-2F931",
+ __uni_decomp_data_0x2f931,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f932,
+ "CJK COMPATIBILITY IDEOGRAPH-2F932",
+ __uni_decomp_data_0x2f932,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f933,
+ "CJK COMPATIBILITY IDEOGRAPH-2F933",
+ __uni_decomp_data_0x2f933,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f934,
+ "CJK COMPATIBILITY IDEOGRAPH-2F934",
+ __uni_decomp_data_0x2f934,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f935,
+ "CJK COMPATIBILITY IDEOGRAPH-2F935",
+ __uni_decomp_data_0x2f935,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f936,
+ "CJK COMPATIBILITY IDEOGRAPH-2F936",
+ __uni_decomp_data_0x2f936,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f937,
+ "CJK COMPATIBILITY IDEOGRAPH-2F937",
+ __uni_decomp_data_0x2f937,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f938,
+ "CJK COMPATIBILITY IDEOGRAPH-2F938",
+ __uni_decomp_data_0x2f938,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f939,
+ "CJK COMPATIBILITY IDEOGRAPH-2F939",
+ __uni_decomp_data_0x2f939,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f93a,
+ "CJK COMPATIBILITY IDEOGRAPH-2F93A",
+ __uni_decomp_data_0x2f93a,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f93b,
+ "CJK COMPATIBILITY IDEOGRAPH-2F93B",
+ __uni_decomp_data_0x2f93b,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f93c,
+ "CJK COMPATIBILITY IDEOGRAPH-2F93C",
+ __uni_decomp_data_0x2f93c,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f93d,
+ "CJK COMPATIBILITY IDEOGRAPH-2F93D",
+ __uni_decomp_data_0x2f93d,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f93e,
+ "CJK COMPATIBILITY IDEOGRAPH-2F93E",
+ __uni_decomp_data_0x2f93e,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f93f,
+ "CJK COMPATIBILITY IDEOGRAPH-2F93F",
+ __uni_decomp_data_0x2f93f,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f940,
+ "CJK COMPATIBILITY IDEOGRAPH-2F940",
+ __uni_decomp_data_0x2f940,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f941,
+ "CJK COMPATIBILITY IDEOGRAPH-2F941",
+ __uni_decomp_data_0x2f941,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f942,
+ "CJK COMPATIBILITY IDEOGRAPH-2F942",
+ __uni_decomp_data_0x2f942,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f943,
+ "CJK COMPATIBILITY IDEOGRAPH-2F943",
+ __uni_decomp_data_0x2f943,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f944,
+ "CJK COMPATIBILITY IDEOGRAPH-2F944",
+ __uni_decomp_data_0x2f944,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f945,
+ "CJK COMPATIBILITY IDEOGRAPH-2F945",
+ __uni_decomp_data_0x2f945,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f946,
+ "CJK COMPATIBILITY IDEOGRAPH-2F946",
+ __uni_decomp_data_0x2f946,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f947,
+ "CJK COMPATIBILITY IDEOGRAPH-2F947",
+ __uni_decomp_data_0x2f947,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f948,
+ "CJK COMPATIBILITY IDEOGRAPH-2F948",
+ __uni_decomp_data_0x2f948,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f949,
+ "CJK COMPATIBILITY IDEOGRAPH-2F949",
+ __uni_decomp_data_0x2f949,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f94a,
+ "CJK COMPATIBILITY IDEOGRAPH-2F94A",
+ __uni_decomp_data_0x2f94a,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f94b,
+ "CJK COMPATIBILITY IDEOGRAPH-2F94B",
+ __uni_decomp_data_0x2f94b,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f94c,
+ "CJK COMPATIBILITY IDEOGRAPH-2F94C",
+ __uni_decomp_data_0x2f94c,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f94d,
+ "CJK COMPATIBILITY IDEOGRAPH-2F94D",
+ __uni_decomp_data_0x2f94d,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f94e,
+ "CJK COMPATIBILITY IDEOGRAPH-2F94E",
+ __uni_decomp_data_0x2f94e,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f94f,
+ "CJK COMPATIBILITY IDEOGRAPH-2F94F",
+ __uni_decomp_data_0x2f94f,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f950,
+ "CJK COMPATIBILITY IDEOGRAPH-2F950",
+ __uni_decomp_data_0x2f950,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f951,
+ "CJK COMPATIBILITY IDEOGRAPH-2F951",
+ __uni_decomp_data_0x2f951,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f952,
+ "CJK COMPATIBILITY IDEOGRAPH-2F952",
+ __uni_decomp_data_0x2f952,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f953,
+ "CJK COMPATIBILITY IDEOGRAPH-2F953",
+ __uni_decomp_data_0x2f953,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f954,
+ "CJK COMPATIBILITY IDEOGRAPH-2F954",
+ __uni_decomp_data_0x2f954,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f955,
+ "CJK COMPATIBILITY IDEOGRAPH-2F955",
+ __uni_decomp_data_0x2f955,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f956,
+ "CJK COMPATIBILITY IDEOGRAPH-2F956",
+ __uni_decomp_data_0x2f956,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f957,
+ "CJK COMPATIBILITY IDEOGRAPH-2F957",
+ __uni_decomp_data_0x2f957,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f958,
+ "CJK COMPATIBILITY IDEOGRAPH-2F958",
+ __uni_decomp_data_0x2f958,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f959,
+ "CJK COMPATIBILITY IDEOGRAPH-2F959",
+ __uni_decomp_data_0x2f959,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f95a,
+ "CJK COMPATIBILITY IDEOGRAPH-2F95A",
+ __uni_decomp_data_0x2f95a,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f95b,
+ "CJK COMPATIBILITY IDEOGRAPH-2F95B",
+ __uni_decomp_data_0x2f95b,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f95c,
+ "CJK COMPATIBILITY IDEOGRAPH-2F95C",
+ __uni_decomp_data_0x2f95c,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f95d,
+ "CJK COMPATIBILITY IDEOGRAPH-2F95D",
+ __uni_decomp_data_0x2f95d,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f95e,
+ "CJK COMPATIBILITY IDEOGRAPH-2F95E",
+ __uni_decomp_data_0x2f95e,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f95f,
+ "CJK COMPATIBILITY IDEOGRAPH-2F95F",
+ __uni_decomp_data_0x2f95f,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f960,
+ "CJK COMPATIBILITY IDEOGRAPH-2F960",
+ __uni_decomp_data_0x2f960,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f961,
+ "CJK COMPATIBILITY IDEOGRAPH-2F961",
+ __uni_decomp_data_0x2f961,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f962,
+ "CJK COMPATIBILITY IDEOGRAPH-2F962",
+ __uni_decomp_data_0x2f962,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f963,
+ "CJK COMPATIBILITY IDEOGRAPH-2F963",
+ __uni_decomp_data_0x2f963,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f964,
+ "CJK COMPATIBILITY IDEOGRAPH-2F964",
+ __uni_decomp_data_0x2f964,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f965,
+ "CJK COMPATIBILITY IDEOGRAPH-2F965",
+ __uni_decomp_data_0x2f965,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f966,
+ "CJK COMPATIBILITY IDEOGRAPH-2F966",
+ __uni_decomp_data_0x2f966,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f967,
+ "CJK COMPATIBILITY IDEOGRAPH-2F967",
+ __uni_decomp_data_0x2f967,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f968,
+ "CJK COMPATIBILITY IDEOGRAPH-2F968",
+ __uni_decomp_data_0x2f968,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f969,
+ "CJK COMPATIBILITY IDEOGRAPH-2F969",
+ __uni_decomp_data_0x2f969,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f96a,
+ "CJK COMPATIBILITY IDEOGRAPH-2F96A",
+ __uni_decomp_data_0x2f96a,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f96b,
+ "CJK COMPATIBILITY IDEOGRAPH-2F96B",
+ __uni_decomp_data_0x2f96b,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f96c,
+ "CJK COMPATIBILITY IDEOGRAPH-2F96C",
+ __uni_decomp_data_0x2f96c,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f96d,
+ "CJK COMPATIBILITY IDEOGRAPH-2F96D",
+ __uni_decomp_data_0x2f96d,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f96e,
+ "CJK COMPATIBILITY IDEOGRAPH-2F96E",
+ __uni_decomp_data_0x2f96e,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f96f,
+ "CJK COMPATIBILITY IDEOGRAPH-2F96F",
+ __uni_decomp_data_0x2f96f,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f970,
+ "CJK COMPATIBILITY IDEOGRAPH-2F970",
+ __uni_decomp_data_0x2f970,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f971,
+ "CJK COMPATIBILITY IDEOGRAPH-2F971",
+ __uni_decomp_data_0x2f971,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f972,
+ "CJK COMPATIBILITY IDEOGRAPH-2F972",
+ __uni_decomp_data_0x2f972,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f973,
+ "CJK COMPATIBILITY IDEOGRAPH-2F973",
+ __uni_decomp_data_0x2f973,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f974,
+ "CJK COMPATIBILITY IDEOGRAPH-2F974",
+ __uni_decomp_data_0x2f974,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f975,
+ "CJK COMPATIBILITY IDEOGRAPH-2F975",
+ __uni_decomp_data_0x2f975,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f976,
+ "CJK COMPATIBILITY IDEOGRAPH-2F976",
+ __uni_decomp_data_0x2f976,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f977,
+ "CJK COMPATIBILITY IDEOGRAPH-2F977",
+ __uni_decomp_data_0x2f977,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f978,
+ "CJK COMPATIBILITY IDEOGRAPH-2F978",
+ __uni_decomp_data_0x2f978,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f979,
+ "CJK COMPATIBILITY IDEOGRAPH-2F979",
+ __uni_decomp_data_0x2f979,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f97a,
+ "CJK COMPATIBILITY IDEOGRAPH-2F97A",
+ __uni_decomp_data_0x2f97a,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f97b,
+ "CJK COMPATIBILITY IDEOGRAPH-2F97B",
+ __uni_decomp_data_0x2f97b,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f97c,
+ "CJK COMPATIBILITY IDEOGRAPH-2F97C",
+ __uni_decomp_data_0x2f97c,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f97d,
+ "CJK COMPATIBILITY IDEOGRAPH-2F97D",
+ __uni_decomp_data_0x2f97d,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f97e,
+ "CJK COMPATIBILITY IDEOGRAPH-2F97E",
+ __uni_decomp_data_0x2f97e,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f97f,
+ "CJK COMPATIBILITY IDEOGRAPH-2F97F",
+ __uni_decomp_data_0x2f97f,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f980,
+ "CJK COMPATIBILITY IDEOGRAPH-2F980",
+ __uni_decomp_data_0x2f980,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f981,
+ "CJK COMPATIBILITY IDEOGRAPH-2F981",
+ __uni_decomp_data_0x2f981,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f982,
+ "CJK COMPATIBILITY IDEOGRAPH-2F982",
+ __uni_decomp_data_0x2f982,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f983,
+ "CJK COMPATIBILITY IDEOGRAPH-2F983",
+ __uni_decomp_data_0x2f983,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f984,
+ "CJK COMPATIBILITY IDEOGRAPH-2F984",
+ __uni_decomp_data_0x2f984,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f985,
+ "CJK COMPATIBILITY IDEOGRAPH-2F985",
+ __uni_decomp_data_0x2f985,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f986,
+ "CJK COMPATIBILITY IDEOGRAPH-2F986",
+ __uni_decomp_data_0x2f986,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f987,
+ "CJK COMPATIBILITY IDEOGRAPH-2F987",
+ __uni_decomp_data_0x2f987,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f988,
+ "CJK COMPATIBILITY IDEOGRAPH-2F988",
+ __uni_decomp_data_0x2f988,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f989,
+ "CJK COMPATIBILITY IDEOGRAPH-2F989",
+ __uni_decomp_data_0x2f989,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f98a,
+ "CJK COMPATIBILITY IDEOGRAPH-2F98A",
+ __uni_decomp_data_0x2f98a,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f98b,
+ "CJK COMPATIBILITY IDEOGRAPH-2F98B",
+ __uni_decomp_data_0x2f98b,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f98c,
+ "CJK COMPATIBILITY IDEOGRAPH-2F98C",
+ __uni_decomp_data_0x2f98c,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f98d,
+ "CJK COMPATIBILITY IDEOGRAPH-2F98D",
+ __uni_decomp_data_0x2f98d,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f98e,
+ "CJK COMPATIBILITY IDEOGRAPH-2F98E",
+ __uni_decomp_data_0x2f98e,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f98f,
+ "CJK COMPATIBILITY IDEOGRAPH-2F98F",
+ __uni_decomp_data_0x2f98f,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f990,
+ "CJK COMPATIBILITY IDEOGRAPH-2F990",
+ __uni_decomp_data_0x2f990,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f991,
+ "CJK COMPATIBILITY IDEOGRAPH-2F991",
+ __uni_decomp_data_0x2f991,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f992,
+ "CJK COMPATIBILITY IDEOGRAPH-2F992",
+ __uni_decomp_data_0x2f992,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f993,
+ "CJK COMPATIBILITY IDEOGRAPH-2F993",
+ __uni_decomp_data_0x2f993,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f994,
+ "CJK COMPATIBILITY IDEOGRAPH-2F994",
+ __uni_decomp_data_0x2f994,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f995,
+ "CJK COMPATIBILITY IDEOGRAPH-2F995",
+ __uni_decomp_data_0x2f995,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f996,
+ "CJK COMPATIBILITY IDEOGRAPH-2F996",
+ __uni_decomp_data_0x2f996,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f997,
+ "CJK COMPATIBILITY IDEOGRAPH-2F997",
+ __uni_decomp_data_0x2f997,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f998,
+ "CJK COMPATIBILITY IDEOGRAPH-2F998",
+ __uni_decomp_data_0x2f998,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f999,
+ "CJK COMPATIBILITY IDEOGRAPH-2F999",
+ __uni_decomp_data_0x2f999,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f99a,
+ "CJK COMPATIBILITY IDEOGRAPH-2F99A",
+ __uni_decomp_data_0x2f99a,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f99b,
+ "CJK COMPATIBILITY IDEOGRAPH-2F99B",
+ __uni_decomp_data_0x2f99b,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f99c,
+ "CJK COMPATIBILITY IDEOGRAPH-2F99C",
+ __uni_decomp_data_0x2f99c,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f99d,
+ "CJK COMPATIBILITY IDEOGRAPH-2F99D",
+ __uni_decomp_data_0x2f99d,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f99e,
+ "CJK COMPATIBILITY IDEOGRAPH-2F99E",
+ __uni_decomp_data_0x2f99e,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f99f,
+ "CJK COMPATIBILITY IDEOGRAPH-2F99F",
+ __uni_decomp_data_0x2f99f,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9a0,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9A0",
+ __uni_decomp_data_0x2f9a0,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9a1,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9A1",
+ __uni_decomp_data_0x2f9a1,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9a2,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9A2",
+ __uni_decomp_data_0x2f9a2,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9a3,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9A3",
+ __uni_decomp_data_0x2f9a3,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9a4,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9A4",
+ __uni_decomp_data_0x2f9a4,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9a5,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9A5",
+ __uni_decomp_data_0x2f9a5,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9a6,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9A6",
+ __uni_decomp_data_0x2f9a6,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9a7,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9A7",
+ __uni_decomp_data_0x2f9a7,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9a8,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9A8",
+ __uni_decomp_data_0x2f9a8,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9a9,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9A9",
+ __uni_decomp_data_0x2f9a9,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9aa,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9AA",
+ __uni_decomp_data_0x2f9aa,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9ab,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9AB",
+ __uni_decomp_data_0x2f9ab,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9ac,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9AC",
+ __uni_decomp_data_0x2f9ac,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9ad,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9AD",
+ __uni_decomp_data_0x2f9ad,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9ae,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9AE",
+ __uni_decomp_data_0x2f9ae,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9af,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9AF",
+ __uni_decomp_data_0x2f9af,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9b0,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9B0",
+ __uni_decomp_data_0x2f9b0,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9b1,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9B1",
+ __uni_decomp_data_0x2f9b1,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9b2,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9B2",
+ __uni_decomp_data_0x2f9b2,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9b3,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9B3",
+ __uni_decomp_data_0x2f9b3,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9b4,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9B4",
+ __uni_decomp_data_0x2f9b4,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9b5,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9B5",
+ __uni_decomp_data_0x2f9b5,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9b6,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9B6",
+ __uni_decomp_data_0x2f9b6,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9b7,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9B7",
+ __uni_decomp_data_0x2f9b7,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9b8,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9B8",
+ __uni_decomp_data_0x2f9b8,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9b9,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9B9",
+ __uni_decomp_data_0x2f9b9,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9ba,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9BA",
+ __uni_decomp_data_0x2f9ba,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9bb,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9BB",
+ __uni_decomp_data_0x2f9bb,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9bc,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9BC",
+ __uni_decomp_data_0x2f9bc,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9bd,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9BD",
+ __uni_decomp_data_0x2f9bd,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9be,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9BE",
+ __uni_decomp_data_0x2f9be,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9bf,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9BF",
+ __uni_decomp_data_0x2f9bf,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9c0,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9C0",
+ __uni_decomp_data_0x2f9c0,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9c1,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9C1",
+ __uni_decomp_data_0x2f9c1,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9c2,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9C2",
+ __uni_decomp_data_0x2f9c2,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9c3,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9C3",
+ __uni_decomp_data_0x2f9c3,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9c4,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9C4",
+ __uni_decomp_data_0x2f9c4,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9c5,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9C5",
+ __uni_decomp_data_0x2f9c5,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9c6,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9C6",
+ __uni_decomp_data_0x2f9c6,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9c7,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9C7",
+ __uni_decomp_data_0x2f9c7,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9c8,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9C8",
+ __uni_decomp_data_0x2f9c8,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9c9,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9C9",
+ __uni_decomp_data_0x2f9c9,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9ca,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9CA",
+ __uni_decomp_data_0x2f9ca,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9cb,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9CB",
+ __uni_decomp_data_0x2f9cb,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9cc,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9CC",
+ __uni_decomp_data_0x2f9cc,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9cd,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9CD",
+ __uni_decomp_data_0x2f9cd,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9ce,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9CE",
+ __uni_decomp_data_0x2f9ce,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9cf,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9CF",
+ __uni_decomp_data_0x2f9cf,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9d0,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9D0",
+ __uni_decomp_data_0x2f9d0,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9d1,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9D1",
+ __uni_decomp_data_0x2f9d1,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9d2,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9D2",
+ __uni_decomp_data_0x2f9d2,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9d3,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9D3",
+ __uni_decomp_data_0x2f9d3,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9d4,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9D4",
+ __uni_decomp_data_0x2f9d4,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9d5,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9D5",
+ __uni_decomp_data_0x2f9d5,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9d6,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9D6",
+ __uni_decomp_data_0x2f9d6,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9d7,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9D7",
+ __uni_decomp_data_0x2f9d7,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9d8,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9D8",
+ __uni_decomp_data_0x2f9d8,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9d9,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9D9",
+ __uni_decomp_data_0x2f9d9,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9da,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9DA",
+ __uni_decomp_data_0x2f9da,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9db,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9DB",
+ __uni_decomp_data_0x2f9db,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9dc,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9DC",
+ __uni_decomp_data_0x2f9dc,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9dd,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9DD",
+ __uni_decomp_data_0x2f9dd,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9de,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9DE",
+ __uni_decomp_data_0x2f9de,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9df,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9DF",
+ __uni_decomp_data_0x2f9df,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9e0,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9E0",
+ __uni_decomp_data_0x2f9e0,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9e1,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9E1",
+ __uni_decomp_data_0x2f9e1,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9e2,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9E2",
+ __uni_decomp_data_0x2f9e2,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9e3,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9E3",
+ __uni_decomp_data_0x2f9e3,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9e4,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9E4",
+ __uni_decomp_data_0x2f9e4,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9e5,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9E5",
+ __uni_decomp_data_0x2f9e5,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9e6,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9E6",
+ __uni_decomp_data_0x2f9e6,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9e7,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9E7",
+ __uni_decomp_data_0x2f9e7,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9e8,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9E8",
+ __uni_decomp_data_0x2f9e8,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9e9,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9E9",
+ __uni_decomp_data_0x2f9e9,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9ea,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9EA",
+ __uni_decomp_data_0x2f9ea,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9eb,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9EB",
+ __uni_decomp_data_0x2f9eb,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9ec,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9EC",
+ __uni_decomp_data_0x2f9ec,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9ed,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9ED",
+ __uni_decomp_data_0x2f9ed,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9ee,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9EE",
+ __uni_decomp_data_0x2f9ee,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9ef,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9EF",
+ __uni_decomp_data_0x2f9ef,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9f0,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9F0",
+ __uni_decomp_data_0x2f9f0,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9f1,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9F1",
+ __uni_decomp_data_0x2f9f1,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9f2,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9F2",
+ __uni_decomp_data_0x2f9f2,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9f3,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9F3",
+ __uni_decomp_data_0x2f9f3,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9f4,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9F4",
+ __uni_decomp_data_0x2f9f4,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9f5,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9F5",
+ __uni_decomp_data_0x2f9f5,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9f6,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9F6",
+ __uni_decomp_data_0x2f9f6,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9f7,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9F7",
+ __uni_decomp_data_0x2f9f7,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9f8,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9F8",
+ __uni_decomp_data_0x2f9f8,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9f9,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9F9",
+ __uni_decomp_data_0x2f9f9,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9fa,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9FA",
+ __uni_decomp_data_0x2f9fa,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9fb,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9FB",
+ __uni_decomp_data_0x2f9fb,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9fc,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9FC",
+ __uni_decomp_data_0x2f9fc,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9fd,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9FD",
+ __uni_decomp_data_0x2f9fd,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9fe,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9FE",
+ __uni_decomp_data_0x2f9fe,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2f9ff,
+ "CJK COMPATIBILITY IDEOGRAPH-2F9FF",
+ __uni_decomp_data_0x2f9ff,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa00,
+ "CJK COMPATIBILITY IDEOGRAPH-2FA00",
+ __uni_decomp_data_0x2fa00,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa01,
+ "CJK COMPATIBILITY IDEOGRAPH-2FA01",
+ __uni_decomp_data_0x2fa01,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa02,
+ "CJK COMPATIBILITY IDEOGRAPH-2FA02",
+ __uni_decomp_data_0x2fa02,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa03,
+ "CJK COMPATIBILITY IDEOGRAPH-2FA03",
+ __uni_decomp_data_0x2fa03,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa04,
+ "CJK COMPATIBILITY IDEOGRAPH-2FA04",
+ __uni_decomp_data_0x2fa04,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa05,
+ "CJK COMPATIBILITY IDEOGRAPH-2FA05",
+ __uni_decomp_data_0x2fa05,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa06,
+ "CJK COMPATIBILITY IDEOGRAPH-2FA06",
+ __uni_decomp_data_0x2fa06,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa07,
+ "CJK COMPATIBILITY IDEOGRAPH-2FA07",
+ __uni_decomp_data_0x2fa07,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa08,
+ "CJK COMPATIBILITY IDEOGRAPH-2FA08",
+ __uni_decomp_data_0x2fa08,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa09,
+ "CJK COMPATIBILITY IDEOGRAPH-2FA09",
+ __uni_decomp_data_0x2fa09,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa0a,
+ "CJK COMPATIBILITY IDEOGRAPH-2FA0A",
+ __uni_decomp_data_0x2fa0a,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa0b,
+ "CJK COMPATIBILITY IDEOGRAPH-2FA0B",
+ __uni_decomp_data_0x2fa0b,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa0c,
+ "CJK COMPATIBILITY IDEOGRAPH-2FA0C",
+ __uni_decomp_data_0x2fa0c,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa0d,
+ "CJK COMPATIBILITY IDEOGRAPH-2FA0D",
+ __uni_decomp_data_0x2fa0d,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa0e,
+ "CJK COMPATIBILITY IDEOGRAPH-2FA0E",
+ __uni_decomp_data_0x2fa0e,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa0f,
+ "CJK COMPATIBILITY IDEOGRAPH-2FA0F",
+ __uni_decomp_data_0x2fa0f,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa10,
+ "CJK COMPATIBILITY IDEOGRAPH-2FA10",
+ __uni_decomp_data_0x2fa10,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa11,
+ "CJK COMPATIBILITY IDEOGRAPH-2FA11",
+ __uni_decomp_data_0x2fa11,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa12,
+ "CJK COMPATIBILITY IDEOGRAPH-2FA12",
+ __uni_decomp_data_0x2fa12,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa13,
+ "CJK COMPATIBILITY IDEOGRAPH-2FA13",
+ __uni_decomp_data_0x2fa13,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa14,
+ "CJK COMPATIBILITY IDEOGRAPH-2FA14",
+ __uni_decomp_data_0x2fa14,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa15,
+ "CJK COMPATIBILITY IDEOGRAPH-2FA15",
+ __uni_decomp_data_0x2fa15,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa16,
+ "CJK COMPATIBILITY IDEOGRAPH-2FA16",
+ __uni_decomp_data_0x2fa16,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa17,
+ "CJK COMPATIBILITY IDEOGRAPH-2FA17",
+ __uni_decomp_data_0x2fa17,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa18,
+ "CJK COMPATIBILITY IDEOGRAPH-2FA18",
+ __uni_decomp_data_0x2fa18,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa19,
+ "CJK COMPATIBILITY IDEOGRAPH-2FA19",
+ __uni_decomp_data_0x2fa19,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa1a,
+ "CJK COMPATIBILITY IDEOGRAPH-2FA1A",
+ __uni_decomp_data_0x2fa1a,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa1b,
+ "CJK COMPATIBILITY IDEOGRAPH-2FA1B",
+ __uni_decomp_data_0x2fa1b,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa1c,
+ "CJK COMPATIBILITY IDEOGRAPH-2FA1C",
+ __uni_decomp_data_0x2fa1c,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa1d,
+ "CJK COMPATIBILITY IDEOGRAPH-2FA1D",
+ __uni_decomp_data_0x2fa1d,
+ NULL,
+ {
+ category::letter_other,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::canonical,
+ break_class::ideograph,
+ 0,
+ sentence_break::oletter,
+ grapheme_cluster_break::any,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa1e,
+ "<control>",
+ NULL,
+ NULL,
+ {
+ category::other_control,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::zero_data1_data2_cp,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::control,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa1f,
+ "<control>",
+ NULL,
+ NULL,
+ {
+ category::other_control,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::zero_data1_data2_cp,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::control,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa20,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa21,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa22,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa23,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa24,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa25,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa26,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa27,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa28,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa29,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa2a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa2b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa2c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa2d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa2e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa2f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa30,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa31,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa32,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa33,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa34,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa35,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa36,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa37,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa38,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa39,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa3a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa3b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa3c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa3d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa3e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa3f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa40,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa41,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa42,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa43,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa44,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa45,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa46,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa47,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa48,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa49,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa4a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa4b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa4c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa4d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa4e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa4f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa50,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa51,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa52,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa53,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa54,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa55,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa56,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa57,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa58,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa59,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa5a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa5b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa5c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa5d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa5e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa5f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa60,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa61,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa62,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa63,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa64,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa65,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa66,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa67,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa68,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa69,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa6a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa6b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa6c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa6d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa6e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa6f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa70,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa71,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa72,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa73,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa74,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa75,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa76,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa77,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa78,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa79,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa7a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa7b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa7c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa7d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa7e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa7f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa80,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa81,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa82,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa83,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa84,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa85,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa86,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa87,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa88,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa89,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa8a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa8b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa8c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa8d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa8e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa8f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa90,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa91,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa92,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa93,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa94,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa95,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa96,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa97,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa98,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa99,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa9a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa9b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa9c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa9d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa9e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fa9f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2faa0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2faa1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2faa2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2faa3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2faa4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2faa5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2faa6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2faa7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2faa8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2faa9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2faaa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2faab,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2faac,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2faad,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2faae,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2faaf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fab0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fab1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fab2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fab3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fab4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fab5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fab6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fab7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fab8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fab9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2faba,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fabb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fabc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fabd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fabe,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fabf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fac0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fac1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fac2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fac3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fac4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fac5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fac6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fac7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fac8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fac9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2faca,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2facb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2facc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2facd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2face,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2facf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fad0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fad1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fad2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fad3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fad4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fad5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fad6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fad7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fad8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fad9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fada,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fadb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fadc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fadd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fade,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fadf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fae0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fae1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fae2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fae3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fae4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fae5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fae6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fae7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fae8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fae9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2faea,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2faeb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2faec,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2faed,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2faee,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2faef,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2faf0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2faf1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2faf2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2faf3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2faf4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2faf5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2faf6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2faf7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2faf8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2faf9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fafa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fafb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fafc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fafd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fafe,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2faff,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb00,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb01,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb02,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb03,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb04,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb05,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb06,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb07,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb08,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb09,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb0a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb0b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb0c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb0d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb0e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb0f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb10,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb11,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb12,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb13,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb14,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb15,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb16,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb17,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb18,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb19,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb1a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb1b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb1c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb1d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb1e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb1f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb20,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb21,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb22,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb23,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb24,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb25,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb26,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb27,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb28,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb29,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb2a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb2b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb2c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb2d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb2e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb2f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb30,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb31,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb32,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb33,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb34,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb35,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb36,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb37,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb38,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb39,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb3a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb3b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb3c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb3d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb3e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb3f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb40,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb41,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb42,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb43,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb44,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb45,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb46,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb47,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb48,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb49,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb4a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb4b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb4c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb4d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb4e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb4f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb50,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb51,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb52,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb53,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb54,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb55,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb56,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb57,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb58,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb59,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb5a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb5b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb5c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb5d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb5e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb5f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb60,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb61,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb62,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb63,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb64,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb65,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb66,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb67,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb68,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb69,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb6a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb6b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb6c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb6d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb6e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb6f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb70,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb71,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb72,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb73,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb74,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb75,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb76,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb77,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb78,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb79,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb7a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb7b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb7c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb7d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb7e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb7f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb80,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb81,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb82,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb83,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb84,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb85,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb86,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb87,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb88,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb89,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb8a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb8b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb8c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb8d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb8e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb8f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb90,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb91,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb92,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb93,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb94,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb95,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb96,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb97,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb98,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb99,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb9a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb9b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb9c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb9d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb9e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fb9f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fba0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fba1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fba2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fba3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fba4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fba5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fba6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fba7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fba8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fba9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbaa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbab,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbac,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbad,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbae,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbaf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbb0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbb1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbb2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbb3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbb4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbb5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbb6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbb7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbb8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbb9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbba,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbbb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbbc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbbd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbbe,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbbf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbc0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbc1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbc2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbc3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbc4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbc5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbc6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbc7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbc8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbc9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbca,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbcb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbcc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbcd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbce,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbcf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbd0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbd1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbd2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbd3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbd4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbd5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbd6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbd7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbd8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbd9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbda,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbdb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbdc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbdd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbde,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbdf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbe0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbe1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbe2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbe3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbe4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbe5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbe6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbe7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbe8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbe9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbea,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbeb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbec,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbed,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbee,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbef,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbf0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbf1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbf2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbf3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbf4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbf5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbf6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbf7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbf8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbf9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbfa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbfb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbfc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbfd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbfe,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fbff,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc00,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc01,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc02,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc03,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc04,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc05,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc06,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc07,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc08,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc09,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc0a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc0b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc0c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc0d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc0e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc0f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc10,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc11,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc12,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc13,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc14,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc15,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc16,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc17,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc18,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc19,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc1a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc1b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc1c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc1d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc1e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc1f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc20,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc21,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc22,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc23,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc24,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc25,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc26,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc27,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc28,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc29,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc2a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc2b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc2c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc2d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc2e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc2f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc30,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc31,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc32,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc33,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc34,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc35,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc36,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc37,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc38,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc39,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc3a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc3b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc3c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc3d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc3e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc3f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc40,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc41,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc42,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc43,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc44,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc45,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc46,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc47,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc48,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc49,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc4a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc4b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc4c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc4d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc4e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc4f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc50,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc51,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc52,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc53,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc54,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc55,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc56,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc57,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc58,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc59,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc5a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc5b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc5c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc5d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc5e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc5f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc60,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc61,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc62,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc63,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc64,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc65,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc66,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc67,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc68,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc69,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc6a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc6b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc6c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc6d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc6e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc6f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc70,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc71,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc72,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc73,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc74,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc75,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc76,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc77,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc78,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc79,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc7a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc7b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc7c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc7d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc7e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc7f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc80,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc81,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc82,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc83,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc84,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc85,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc86,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc87,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc88,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc89,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc8a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc8b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc8c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc8d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc8e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc8f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc90,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc91,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc92,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc93,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc94,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc95,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc96,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc97,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc98,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc99,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc9a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc9b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc9c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc9d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc9e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fc9f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fca0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fca1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fca2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fca3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fca4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fca5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fca6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fca7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fca8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fca9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcaa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcab,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcac,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcad,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcae,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcaf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcb0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcb1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcb2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcb3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcb4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcb5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcb6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcb7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcb8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcb9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcba,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcbb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcbc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcbd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcbe,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcbf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcc0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcc1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcc2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcc3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcc4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcc5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcc6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcc7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcc8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcc9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcca,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fccb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fccc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fccd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcce,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fccf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcd0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcd1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcd2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcd3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcd4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcd5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcd6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcd7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcd8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcd9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcda,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcdb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcdc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcdd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcde,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcdf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fce0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fce1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fce2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fce3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fce4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fce5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fce6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fce7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fce8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fce9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcea,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fceb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcec,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fced,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcee,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcef,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcf0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcf1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcf2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcf3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcf4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcf5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcf6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcf7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcf8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcf9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcfa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcfb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcfc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcfd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcfe,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fcff,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd00,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd01,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd02,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd03,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd04,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd05,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd06,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd07,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd08,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd09,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd0a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd0b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd0c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd0d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd0e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd0f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd10,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd11,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd12,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd13,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd14,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd15,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd16,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd17,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd18,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd19,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd1a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd1b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd1c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd1d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd1e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd1f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd20,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd21,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd22,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd23,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd24,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd25,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd26,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd27,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd28,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd29,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd2a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd2b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd2c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd2d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd2e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd2f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd30,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd31,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd32,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd33,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd34,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd35,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd36,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd37,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd38,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd39,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd3a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd3b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd3c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd3d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd3e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd3f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd40,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd41,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd42,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd43,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd44,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd45,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd46,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd47,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd48,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd49,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd4a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd4b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd4c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd4d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd4e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd4f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd50,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd51,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd52,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd53,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd54,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd55,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd56,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd57,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd58,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd59,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd5a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd5b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd5c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd5d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd5e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd5f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd60,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd61,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd62,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd63,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd64,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd65,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd66,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd67,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd68,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd69,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd6a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd6b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd6c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd6d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd6e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd6f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd70,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd71,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd72,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd73,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd74,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd75,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd76,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd77,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd78,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd79,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd7a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd7b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd7c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd7d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd7e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd7f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd80,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd81,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd82,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd83,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd84,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd85,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd86,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd87,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd88,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd89,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd8a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd8b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd8c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd8d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd8e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd8f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd90,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd91,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd92,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd93,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd94,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd95,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd96,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd97,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd98,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd99,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd9a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd9b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd9c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd9d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd9e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fd9f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fda0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fda1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fda2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fda3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fda4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fda5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fda6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fda7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fda8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fda9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdaa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdab,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdac,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdad,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdae,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdaf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdb0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdb1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdb2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdb3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdb4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdb5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdb6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdb7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdb8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdb9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdba,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdbb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdbc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdbd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdbe,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdbf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdc0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdc1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdc2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdc3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdc4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdc5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdc6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdc7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdc8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdc9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdca,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdcb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdcc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdcd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdce,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdcf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdd0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdd1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdd2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdd3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdd4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdd5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdd6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdd7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdd8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdd9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdda,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fddb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fddc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fddd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdde,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fddf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fde0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fde1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fde2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fde3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fde4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fde5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fde6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fde7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fde8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fde9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdea,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdeb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdec,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fded,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdee,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdef,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdf0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdf1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdf2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdf3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdf4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdf5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdf6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdf7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdf8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdf9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdfa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdfb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdfc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdfd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdfe,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fdff,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe00,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe01,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe02,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe03,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe04,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe05,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe06,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe07,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe08,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe09,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe0a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe0b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe0c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe0d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe0e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe0f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe10,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe11,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe12,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe13,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe14,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe15,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe16,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe17,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe18,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe19,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe1a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe1b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe1c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe1d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe1e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe1f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe20,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe21,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe22,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe23,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe24,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe25,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe26,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe27,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe28,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe29,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe2a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe2b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe2c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe2d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe2e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe2f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe30,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe31,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe32,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe33,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe34,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe35,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe36,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe37,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe38,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe39,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe3a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe3b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe3c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe3d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe3e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe3f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe40,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe41,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe42,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe43,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe44,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe45,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe46,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe47,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe48,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe49,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe4a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe4b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe4c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe4d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe4e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe4f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe50,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe51,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe52,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe53,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe54,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe55,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe56,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe57,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe58,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe59,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe5a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe5b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe5c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe5d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe5e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe5f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe60,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe61,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe62,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe63,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe64,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe65,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe66,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe67,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe68,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe69,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe6a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe6b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe6c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe6d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe6e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe6f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe70,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe71,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe72,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe73,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe74,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe75,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe76,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe77,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe78,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe79,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe7a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe7b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe7c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe7d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe7e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe7f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe80,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe81,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe82,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe83,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe84,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe85,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe86,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe87,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe88,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe89,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe8a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe8b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe8c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe8d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe8e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe8f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe90,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe91,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe92,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe93,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe94,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe95,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe96,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe97,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe98,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe99,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe9a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe9b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe9c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe9d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe9e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fe9f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fea0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fea1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fea2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fea3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fea4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fea5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fea6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fea7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fea8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fea9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2feaa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2feab,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2feac,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fead,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2feae,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2feaf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2feb0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2feb1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2feb2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2feb3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2feb4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2feb5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2feb6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2feb7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2feb8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2feb9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2feba,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2febb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2febc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2febd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2febe,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2febf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fec0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fec1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fec2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fec3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fec4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fec5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fec6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fec7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fec8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fec9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2feca,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fecb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fecc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fecd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fece,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fecf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fed0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fed1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fed2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fed3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fed4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fed5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fed6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fed7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fed8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fed9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2feda,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fedb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fedc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fedd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fede,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fedf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fee0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fee1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fee2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fee3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fee4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fee5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fee6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fee7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fee8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fee9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2feea,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2feeb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2feec,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2feed,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2feee,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2feef,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fef0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fef1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fef2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fef3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fef4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fef5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fef6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fef7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fef8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fef9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fefa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fefb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fefc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fefd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fefe,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2feff,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff00,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff01,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff02,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff03,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff04,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff05,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff06,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff07,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff08,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff09,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff0a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff0b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff0c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff0d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff0e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff0f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff10,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff11,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff12,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff13,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff14,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff15,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff16,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff17,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff18,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff19,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff1a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff1b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff1c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff1d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff1e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff1f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff20,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff21,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff22,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff23,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff24,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff25,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff26,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff27,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff28,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff29,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff2a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff2b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff2c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff2d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff2e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff2f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff30,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff31,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff32,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff33,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff34,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff35,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff36,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff37,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff38,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff39,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff3a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff3b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff3c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff3d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff3e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff3f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff40,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff41,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff42,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff43,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff44,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff45,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff46,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff47,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff48,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff49,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff4a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff4b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff4c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff4d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff4e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff4f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff50,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff51,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff52,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff53,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff54,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff55,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff56,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff57,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff58,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff59,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff5a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff5b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff5c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff5d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff5e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff5f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff60,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff61,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff62,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff63,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff64,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff65,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff66,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff67,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff68,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff69,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff6a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff6b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff6c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff6d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff6e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff6f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff70,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff71,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff72,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff73,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff74,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff75,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff76,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff77,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff78,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff79,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff7a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff7b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff7c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff7d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff7e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff7f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff80,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff81,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff82,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff83,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff84,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff85,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff86,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff87,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff88,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff89,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff8a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff8b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff8c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff8d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff8e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff8f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff90,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff91,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff92,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff93,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff94,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff95,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff96,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff97,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff98,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff99,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff9a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff9b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff9c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff9d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff9e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ff9f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffa0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffa1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffa2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffa3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffa4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffa5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffa6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffa7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffa8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffa9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffaa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffab,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffac,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffad,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffae,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffaf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffb0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffb1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffb2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffb3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffb4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffb5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffb6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffb7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffb8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffb9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffba,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffbb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffbc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffbd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffbe,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffbf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffc0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffc1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffc2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffc3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffc4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffc5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffc6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffc7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffc8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffc9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffca,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffcb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffcc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffcd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffce,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffcf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffd0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffd1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffd2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffd3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffd4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffd5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffd6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffd7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffd8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffd9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffda,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffdb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffdc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffdd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffde,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffdf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffe0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffe1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffe2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffe3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffe4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffe5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffe6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffe7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffe8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffe9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffea,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffeb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffec,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffed,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffee,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffef,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fff0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fff1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fff2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fff3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fff4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fff5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fff6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fff7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fff8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fff9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fffa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fffb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fffc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fffd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2fffe,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x2ffff,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+};
+
+
+
+
+
+
+static const unichar_data_internal __uni_char_data_e0000[]=
+{
+ { // char 0xe0000,
+ "<control>",
+ NULL,
+ NULL,
+ {
+ category::other_control,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::zero_data1_data2_cp,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::control,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0001,
+ "LANGUAGE TAG",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1690,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0002,
+ "<control>",
+ NULL,
+ NULL,
+ {
+ category::other_control,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::zero_data1_data2_cp,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::control,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0003,
+ "<control>",
+ NULL,
+ NULL,
+ {
+ category::other_control,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::zero_data1_data2_cp,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::control,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0004,
+ "<control>",
+ NULL,
+ NULL,
+ {
+ category::other_control,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::zero_data1_data2_cp,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::control,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0005,
+ "<control>",
+ NULL,
+ NULL,
+ {
+ category::other_control,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::zero_data1_data2_cp,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::control,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0006,
+ "<control>",
+ NULL,
+ NULL,
+ {
+ category::other_control,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::zero_data1_data2_cp,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::control,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0007,
+ "<control>",
+ NULL,
+ NULL,
+ {
+ category::other_control,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::zero_data1_data2_cp,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::control,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0008,
+ "<control>",
+ NULL,
+ NULL,
+ {
+ category::other_control,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::zero_data1_data2_cp,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::control,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0009,
+ "<control>",
+ NULL,
+ NULL,
+ {
+ category::other_control,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::zero_data1_data2_cp,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::control,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe000a,
+ "<control>",
+ NULL,
+ NULL,
+ {
+ category::other_control,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::zero_data1_data2_cp,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::control,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe000b,
+ "<control>",
+ NULL,
+ NULL,
+ {
+ category::other_control,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::zero_data1_data2_cp,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::control,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe000c,
+ "<control>",
+ NULL,
+ NULL,
+ {
+ category::other_control,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::zero_data1_data2_cp,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::control,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe000d,
+ "<control>",
+ NULL,
+ NULL,
+ {
+ category::other_control,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::zero_data1_data2_cp,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::control,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe000e,
+ "<control>",
+ NULL,
+ NULL,
+ {
+ category::other_control,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::zero_data1_data2_cp,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::control,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe000f,
+ "<control>",
+ NULL,
+ NULL,
+ {
+ category::other_control,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::zero_data1_data2_cp,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::control,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0010,
+ "<control>",
+ NULL,
+ NULL,
+ {
+ category::other_control,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::zero_data1_data2_cp,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::control,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0011,
+ "<control>",
+ NULL,
+ NULL,
+ {
+ category::other_control,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::zero_data1_data2_cp,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::control,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0012,
+ "<control>",
+ NULL,
+ NULL,
+ {
+ category::other_control,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::zero_data1_data2_cp,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::control,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0013,
+ "<control>",
+ NULL,
+ NULL,
+ {
+ category::other_control,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::zero_data1_data2_cp,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::control,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0014,
+ "<control>",
+ NULL,
+ NULL,
+ {
+ category::other_control,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::zero_data1_data2_cp,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::control,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0015,
+ "<control>",
+ NULL,
+ NULL,
+ {
+ category::other_control,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::zero_data1_data2_cp,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::control,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0016,
+ "<control>",
+ NULL,
+ NULL,
+ {
+ category::other_control,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::zero_data1_data2_cp,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::control,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0017,
+ "<control>",
+ NULL,
+ NULL,
+ {
+ category::other_control,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::zero_data1_data2_cp,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::control,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0018,
+ "<control>",
+ NULL,
+ NULL,
+ {
+ category::other_control,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::zero_data1_data2_cp,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::control,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0019,
+ "<control>",
+ NULL,
+ NULL,
+ {
+ category::other_control,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::zero_data1_data2_cp,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::control,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe001a,
+ "<control>",
+ NULL,
+ NULL,
+ {
+ category::other_control,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::zero_data1_data2_cp,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::control,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe001b,
+ "<control>",
+ NULL,
+ NULL,
+ {
+ category::other_control,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::zero_data1_data2_cp,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::control,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe001c,
+ "<control>",
+ NULL,
+ NULL,
+ {
+ category::other_control,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::zero_data1_data2_cp,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::control,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe001d,
+ "<control>",
+ NULL,
+ NULL,
+ {
+ category::other_control,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::zero_data1_data2_cp,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::control,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe001e,
+ "<control>",
+ NULL,
+ NULL,
+ {
+ category::other_control,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::zero_data1_data2_cp,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::control,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe001f,
+ "<control>",
+ NULL,
+ NULL,
+ {
+ category::other_control,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::zero_data1_data2_cp,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::control,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0020,
+ "TAG SPACE",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1691,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0021,
+ "TAG EXCLAMATION MARK",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1692,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0022,
+ "TAG QUOTATION MARK",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1693,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0023,
+ "TAG NUMBER SIGN",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1694,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0024,
+ "TAG DOLLAR SIGN",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1695,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0025,
+ "TAG PERCENT SIGN",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1696,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0026,
+ "TAG AMPERSAND",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1697,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0027,
+ "TAG APOSTROPHE",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1698,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0028,
+ "TAG LEFT PARENTHESIS",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1699,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0029,
+ "TAG RIGHT PARENTHESIS",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1700,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe002a,
+ "TAG ASTERISK",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1701,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe002b,
+ "TAG PLUS SIGN",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1702,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe002c,
+ "TAG COMMA",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1703,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe002d,
+ "TAG HYPHEN-MINUS",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1704,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe002e,
+ "TAG FULL STOP",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1705,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe002f,
+ "TAG SOLIDUS",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1706,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0030,
+ "TAG DIGIT ZERO",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1707,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0031,
+ "TAG DIGIT ONE",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1708,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0032,
+ "TAG DIGIT TWO",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1709,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0033,
+ "TAG DIGIT THREE",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1710,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0034,
+ "TAG DIGIT FOUR",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1711,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0035,
+ "TAG DIGIT FIVE",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1712,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0036,
+ "TAG DIGIT SIX",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1713,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0037,
+ "TAG DIGIT SEVEN",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1714,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0038,
+ "TAG DIGIT EIGHT",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1715,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0039,
+ "TAG DIGIT NINE",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1716,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe003a,
+ "TAG COLON",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1717,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe003b,
+ "TAG SEMICOLON",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1718,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe003c,
+ "TAG LESS-THAN SIGN",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1719,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe003d,
+ "TAG EQUALS SIGN",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1720,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe003e,
+ "TAG GREATER-THAN SIGN",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1721,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe003f,
+ "TAG QUESTION MARK",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1722,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0040,
+ "TAG COMMERCIAL AT",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1723,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0041,
+ "TAG LATIN CAPITAL LETTER A",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1724,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0042,
+ "TAG LATIN CAPITAL LETTER B",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1725,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0043,
+ "TAG LATIN CAPITAL LETTER C",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1726,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0044,
+ "TAG LATIN CAPITAL LETTER D",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1727,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0045,
+ "TAG LATIN CAPITAL LETTER E",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1728,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0046,
+ "TAG LATIN CAPITAL LETTER F",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1729,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0047,
+ "TAG LATIN CAPITAL LETTER G",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1730,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0048,
+ "TAG LATIN CAPITAL LETTER H",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1731,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0049,
+ "TAG LATIN CAPITAL LETTER I",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1732,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe004a,
+ "TAG LATIN CAPITAL LETTER J",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1733,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe004b,
+ "TAG LATIN CAPITAL LETTER K",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1734,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe004c,
+ "TAG LATIN CAPITAL LETTER L",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1735,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe004d,
+ "TAG LATIN CAPITAL LETTER M",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1736,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe004e,
+ "TAG LATIN CAPITAL LETTER N",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1737,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe004f,
+ "TAG LATIN CAPITAL LETTER O",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1738,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0050,
+ "TAG LATIN CAPITAL LETTER P",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1739,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0051,
+ "TAG LATIN CAPITAL LETTER Q",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1740,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0052,
+ "TAG LATIN CAPITAL LETTER R",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1741,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0053,
+ "TAG LATIN CAPITAL LETTER S",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1742,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0054,
+ "TAG LATIN CAPITAL LETTER T",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1743,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0055,
+ "TAG LATIN CAPITAL LETTER U",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1744,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0056,
+ "TAG LATIN CAPITAL LETTER V",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1745,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0057,
+ "TAG LATIN CAPITAL LETTER W",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1746,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0058,
+ "TAG LATIN CAPITAL LETTER X",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1747,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0059,
+ "TAG LATIN CAPITAL LETTER Y",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1748,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe005a,
+ "TAG LATIN CAPITAL LETTER Z",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1749,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe005b,
+ "TAG LEFT SQUARE BRACKET",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1750,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe005c,
+ "TAG REVERSE SOLIDUS",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1751,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe005d,
+ "TAG RIGHT SQUARE BRACKET",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1752,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe005e,
+ "TAG CIRCUMFLEX ACCENT",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1753,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe005f,
+ "TAG LOW LINE",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1754,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0060,
+ "TAG GRAVE ACCENT",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1755,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0061,
+ "TAG LATIN SMALL LETTER A",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1756,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0062,
+ "TAG LATIN SMALL LETTER B",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1757,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0063,
+ "TAG LATIN SMALL LETTER C",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1758,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0064,
+ "TAG LATIN SMALL LETTER D",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1759,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0065,
+ "TAG LATIN SMALL LETTER E",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1760,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0066,
+ "TAG LATIN SMALL LETTER F",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1761,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0067,
+ "TAG LATIN SMALL LETTER G",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1762,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0068,
+ "TAG LATIN SMALL LETTER H",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1763,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0069,
+ "TAG LATIN SMALL LETTER I",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1764,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe006a,
+ "TAG LATIN SMALL LETTER J",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1765,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe006b,
+ "TAG LATIN SMALL LETTER K",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1766,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe006c,
+ "TAG LATIN SMALL LETTER L",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1767,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe006d,
+ "TAG LATIN SMALL LETTER M",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1768,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe006e,
+ "TAG LATIN SMALL LETTER N",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1769,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe006f,
+ "TAG LATIN SMALL LETTER O",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1770,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0070,
+ "TAG LATIN SMALL LETTER P",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1771,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0071,
+ "TAG LATIN SMALL LETTER Q",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1772,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0072,
+ "TAG LATIN SMALL LETTER R",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1773,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0073,
+ "TAG LATIN SMALL LETTER S",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1774,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0074,
+ "TAG LATIN SMALL LETTER T",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1775,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0075,
+ "TAG LATIN SMALL LETTER U",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1776,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0076,
+ "TAG LATIN SMALL LETTER V",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1777,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0077,
+ "TAG LATIN SMALL LETTER W",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1778,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0078,
+ "TAG LATIN SMALL LETTER X",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1779,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0079,
+ "TAG LATIN SMALL LETTER Y",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1780,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe007a,
+ "TAG LATIN SMALL LETTER Z",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1781,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe007b,
+ "TAG LEFT CURLY BRACKET",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1782,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe007c,
+ "TAG VERTICAL LINE",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1783,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe007d,
+ "TAG RIGHT CURLY BRACKET",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1784,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe007e,
+ "TAG TILDE",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1785,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe007f,
+ "CANCEL TAG",
+ NULL,
+ NULL,
+ {
+ category::other_format,
+ join_type::none,
+ word_break::format,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::format,
+ grapheme_cluster_break::control,
+ },
+ 1786,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0080,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0081,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0082,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0083,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0084,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0085,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0086,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0087,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0088,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0089,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe008a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe008b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe008c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe008d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe008e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe008f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0090,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0091,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0092,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0093,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0094,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0095,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0096,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0097,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0098,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0099,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe009a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe009b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe009c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe009d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe009e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe009f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00a0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00a1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00a2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00a3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00a4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00a5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00a6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00a7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00a8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00a9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00aa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00ab,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00ac,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00ad,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00ae,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00af,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00b0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00b1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00b2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00b3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00b4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00b5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00b6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00b7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00b8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00b9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00ba,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00bb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00bc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00bd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00be,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00bf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00c0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00c1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00c2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00c3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00c4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00c5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00c6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00c7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00c8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00c9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00ca,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00cb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00cc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00cd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00ce,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00cf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00d0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00d1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00d2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00d3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00d4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00d5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00d6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00d7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00d8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00d9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00da,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00db,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00dc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00dd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00de,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00df,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00e0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00e1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00e2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00e3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00e4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00e5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00e6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00e7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00e8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00e9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00ea,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00eb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00ec,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00ed,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00ee,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00ef,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00f0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00f1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00f2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00f3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00f4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00f5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00f6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00f7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00f8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00f9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00fa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00fb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00fc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00fd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00fe,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe00ff,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0100,
+ "VARIATION SELECTOR-17",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1787,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0101,
+ "VARIATION SELECTOR-18",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1788,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0102,
+ "VARIATION SELECTOR-19",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1789,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0103,
+ "VARIATION SELECTOR-20",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1790,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0104,
+ "VARIATION SELECTOR-21",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1791,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0105,
+ "VARIATION SELECTOR-22",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1792,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0106,
+ "VARIATION SELECTOR-23",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1793,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0107,
+ "VARIATION SELECTOR-24",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1794,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0108,
+ "VARIATION SELECTOR-25",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1795,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0109,
+ "VARIATION SELECTOR-26",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1796,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe010a,
+ "VARIATION SELECTOR-27",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1797,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe010b,
+ "VARIATION SELECTOR-28",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1798,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe010c,
+ "VARIATION SELECTOR-29",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1799,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe010d,
+ "VARIATION SELECTOR-30",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1800,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe010e,
+ "VARIATION SELECTOR-31",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1801,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe010f,
+ "VARIATION SELECTOR-32",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1802,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0110,
+ "VARIATION SELECTOR-33",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1803,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0111,
+ "VARIATION SELECTOR-34",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1804,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0112,
+ "VARIATION SELECTOR-35",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1805,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0113,
+ "VARIATION SELECTOR-36",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1806,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0114,
+ "VARIATION SELECTOR-37",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1807,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0115,
+ "VARIATION SELECTOR-38",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1808,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0116,
+ "VARIATION SELECTOR-39",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1809,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0117,
+ "VARIATION SELECTOR-40",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1810,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0118,
+ "VARIATION SELECTOR-41",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1811,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0119,
+ "VARIATION SELECTOR-42",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1812,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe011a,
+ "VARIATION SELECTOR-43",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1813,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe011b,
+ "VARIATION SELECTOR-44",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1814,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe011c,
+ "VARIATION SELECTOR-45",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1815,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe011d,
+ "VARIATION SELECTOR-46",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1816,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe011e,
+ "VARIATION SELECTOR-47",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1817,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe011f,
+ "VARIATION SELECTOR-48",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1818,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0120,
+ "VARIATION SELECTOR-49",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1819,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0121,
+ "VARIATION SELECTOR-50",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1820,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0122,
+ "VARIATION SELECTOR-51",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1821,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0123,
+ "VARIATION SELECTOR-52",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1822,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0124,
+ "VARIATION SELECTOR-53",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1823,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0125,
+ "VARIATION SELECTOR-54",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1824,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0126,
+ "VARIATION SELECTOR-55",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1825,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0127,
+ "VARIATION SELECTOR-56",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1826,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0128,
+ "VARIATION SELECTOR-57",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1827,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0129,
+ "VARIATION SELECTOR-58",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1828,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe012a,
+ "VARIATION SELECTOR-59",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1829,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe012b,
+ "VARIATION SELECTOR-60",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1830,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe012c,
+ "VARIATION SELECTOR-61",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1831,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe012d,
+ "VARIATION SELECTOR-62",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1832,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe012e,
+ "VARIATION SELECTOR-63",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1833,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe012f,
+ "VARIATION SELECTOR-64",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1834,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0130,
+ "VARIATION SELECTOR-65",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1835,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0131,
+ "VARIATION SELECTOR-66",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1836,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0132,
+ "VARIATION SELECTOR-67",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1837,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0133,
+ "VARIATION SELECTOR-68",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1838,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0134,
+ "VARIATION SELECTOR-69",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1839,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0135,
+ "VARIATION SELECTOR-70",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1840,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0136,
+ "VARIATION SELECTOR-71",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1841,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0137,
+ "VARIATION SELECTOR-72",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1842,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0138,
+ "VARIATION SELECTOR-73",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1843,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0139,
+ "VARIATION SELECTOR-74",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1844,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe013a,
+ "VARIATION SELECTOR-75",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1845,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe013b,
+ "VARIATION SELECTOR-76",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1846,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe013c,
+ "VARIATION SELECTOR-77",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1847,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe013d,
+ "VARIATION SELECTOR-78",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1848,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe013e,
+ "VARIATION SELECTOR-79",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1849,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe013f,
+ "VARIATION SELECTOR-80",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1850,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0140,
+ "VARIATION SELECTOR-81",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1851,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0141,
+ "VARIATION SELECTOR-82",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1852,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0142,
+ "VARIATION SELECTOR-83",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1853,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0143,
+ "VARIATION SELECTOR-84",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1854,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0144,
+ "VARIATION SELECTOR-85",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1855,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0145,
+ "VARIATION SELECTOR-86",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1856,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0146,
+ "VARIATION SELECTOR-87",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1857,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0147,
+ "VARIATION SELECTOR-88",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1858,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0148,
+ "VARIATION SELECTOR-89",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1859,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0149,
+ "VARIATION SELECTOR-90",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1860,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe014a,
+ "VARIATION SELECTOR-91",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1861,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe014b,
+ "VARIATION SELECTOR-92",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1862,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe014c,
+ "VARIATION SELECTOR-93",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1863,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe014d,
+ "VARIATION SELECTOR-94",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1864,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe014e,
+ "VARIATION SELECTOR-95",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1865,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe014f,
+ "VARIATION SELECTOR-96",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1866,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0150,
+ "VARIATION SELECTOR-97",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1867,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0151,
+ "VARIATION SELECTOR-98",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1868,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0152,
+ "VARIATION SELECTOR-99",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1869,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0153,
+ "VARIATION SELECTOR-100",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1870,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0154,
+ "VARIATION SELECTOR-101",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1871,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0155,
+ "VARIATION SELECTOR-102",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1872,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0156,
+ "VARIATION SELECTOR-103",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1873,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0157,
+ "VARIATION SELECTOR-104",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1874,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0158,
+ "VARIATION SELECTOR-105",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1875,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0159,
+ "VARIATION SELECTOR-106",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1876,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe015a,
+ "VARIATION SELECTOR-107",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1877,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe015b,
+ "VARIATION SELECTOR-108",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1878,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe015c,
+ "VARIATION SELECTOR-109",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1879,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe015d,
+ "VARIATION SELECTOR-110",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1880,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe015e,
+ "VARIATION SELECTOR-111",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1881,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe015f,
+ "VARIATION SELECTOR-112",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1882,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0160,
+ "VARIATION SELECTOR-113",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1883,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0161,
+ "VARIATION SELECTOR-114",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1884,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0162,
+ "VARIATION SELECTOR-115",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1885,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0163,
+ "VARIATION SELECTOR-116",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1886,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0164,
+ "VARIATION SELECTOR-117",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1887,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0165,
+ "VARIATION SELECTOR-118",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1888,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0166,
+ "VARIATION SELECTOR-119",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1889,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0167,
+ "VARIATION SELECTOR-120",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1890,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0168,
+ "VARIATION SELECTOR-121",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1891,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0169,
+ "VARIATION SELECTOR-122",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1892,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe016a,
+ "VARIATION SELECTOR-123",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1893,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe016b,
+ "VARIATION SELECTOR-124",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1894,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe016c,
+ "VARIATION SELECTOR-125",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1895,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe016d,
+ "VARIATION SELECTOR-126",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1896,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe016e,
+ "VARIATION SELECTOR-127",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1897,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe016f,
+ "VARIATION SELECTOR-128",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1898,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0170,
+ "VARIATION SELECTOR-129",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1899,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0171,
+ "VARIATION SELECTOR-130",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1900,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0172,
+ "VARIATION SELECTOR-131",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1901,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0173,
+ "VARIATION SELECTOR-132",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1902,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0174,
+ "VARIATION SELECTOR-133",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1903,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0175,
+ "VARIATION SELECTOR-134",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1904,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0176,
+ "VARIATION SELECTOR-135",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1905,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0177,
+ "VARIATION SELECTOR-136",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1906,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0178,
+ "VARIATION SELECTOR-137",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1907,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0179,
+ "VARIATION SELECTOR-138",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1908,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe017a,
+ "VARIATION SELECTOR-139",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1909,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe017b,
+ "VARIATION SELECTOR-140",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1910,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe017c,
+ "VARIATION SELECTOR-141",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1911,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe017d,
+ "VARIATION SELECTOR-142",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1912,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe017e,
+ "VARIATION SELECTOR-143",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1913,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe017f,
+ "VARIATION SELECTOR-144",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1914,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0180,
+ "VARIATION SELECTOR-145",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1915,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0181,
+ "VARIATION SELECTOR-146",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1916,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0182,
+ "VARIATION SELECTOR-147",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1917,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0183,
+ "VARIATION SELECTOR-148",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1918,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0184,
+ "VARIATION SELECTOR-149",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1919,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0185,
+ "VARIATION SELECTOR-150",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1920,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0186,
+ "VARIATION SELECTOR-151",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1921,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0187,
+ "VARIATION SELECTOR-152",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1922,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0188,
+ "VARIATION SELECTOR-153",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1923,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0189,
+ "VARIATION SELECTOR-154",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1924,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe018a,
+ "VARIATION SELECTOR-155",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1925,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe018b,
+ "VARIATION SELECTOR-156",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1926,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe018c,
+ "VARIATION SELECTOR-157",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1927,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe018d,
+ "VARIATION SELECTOR-158",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1928,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe018e,
+ "VARIATION SELECTOR-159",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1929,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe018f,
+ "VARIATION SELECTOR-160",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1930,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0190,
+ "VARIATION SELECTOR-161",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1931,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0191,
+ "VARIATION SELECTOR-162",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1932,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0192,
+ "VARIATION SELECTOR-163",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1933,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0193,
+ "VARIATION SELECTOR-164",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1934,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0194,
+ "VARIATION SELECTOR-165",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1935,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0195,
+ "VARIATION SELECTOR-166",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1936,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0196,
+ "VARIATION SELECTOR-167",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1937,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0197,
+ "VARIATION SELECTOR-168",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1938,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0198,
+ "VARIATION SELECTOR-169",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1939,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0199,
+ "VARIATION SELECTOR-170",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1940,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe019a,
+ "VARIATION SELECTOR-171",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1941,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe019b,
+ "VARIATION SELECTOR-172",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1942,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe019c,
+ "VARIATION SELECTOR-173",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1943,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe019d,
+ "VARIATION SELECTOR-174",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1944,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe019e,
+ "VARIATION SELECTOR-175",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1945,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe019f,
+ "VARIATION SELECTOR-176",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1946,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01a0,
+ "VARIATION SELECTOR-177",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1947,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01a1,
+ "VARIATION SELECTOR-178",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1948,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01a2,
+ "VARIATION SELECTOR-179",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1949,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01a3,
+ "VARIATION SELECTOR-180",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1950,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01a4,
+ "VARIATION SELECTOR-181",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1951,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01a5,
+ "VARIATION SELECTOR-182",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1952,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01a6,
+ "VARIATION SELECTOR-183",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1953,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01a7,
+ "VARIATION SELECTOR-184",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1954,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01a8,
+ "VARIATION SELECTOR-185",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1955,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01a9,
+ "VARIATION SELECTOR-186",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1956,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01aa,
+ "VARIATION SELECTOR-187",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1957,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01ab,
+ "VARIATION SELECTOR-188",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1958,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01ac,
+ "VARIATION SELECTOR-189",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1959,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01ad,
+ "VARIATION SELECTOR-190",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1960,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01ae,
+ "VARIATION SELECTOR-191",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1961,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01af,
+ "VARIATION SELECTOR-192",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1962,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01b0,
+ "VARIATION SELECTOR-193",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1963,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01b1,
+ "VARIATION SELECTOR-194",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1964,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01b2,
+ "VARIATION SELECTOR-195",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1965,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01b3,
+ "VARIATION SELECTOR-196",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1966,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01b4,
+ "VARIATION SELECTOR-197",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1967,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01b5,
+ "VARIATION SELECTOR-198",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1968,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01b6,
+ "VARIATION SELECTOR-199",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1969,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01b7,
+ "VARIATION SELECTOR-200",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1970,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01b8,
+ "VARIATION SELECTOR-201",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1971,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01b9,
+ "VARIATION SELECTOR-202",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1972,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01ba,
+ "VARIATION SELECTOR-203",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1973,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01bb,
+ "VARIATION SELECTOR-204",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1974,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01bc,
+ "VARIATION SELECTOR-205",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1975,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01bd,
+ "VARIATION SELECTOR-206",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1976,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01be,
+ "VARIATION SELECTOR-207",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1977,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01bf,
+ "VARIATION SELECTOR-208",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1978,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01c0,
+ "VARIATION SELECTOR-209",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1979,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01c1,
+ "VARIATION SELECTOR-210",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1980,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01c2,
+ "VARIATION SELECTOR-211",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1981,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01c3,
+ "VARIATION SELECTOR-212",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1982,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01c4,
+ "VARIATION SELECTOR-213",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1983,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01c5,
+ "VARIATION SELECTOR-214",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1984,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01c6,
+ "VARIATION SELECTOR-215",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1985,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01c7,
+ "VARIATION SELECTOR-216",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1986,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01c8,
+ "VARIATION SELECTOR-217",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1987,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01c9,
+ "VARIATION SELECTOR-218",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1988,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01ca,
+ "VARIATION SELECTOR-219",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1989,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01cb,
+ "VARIATION SELECTOR-220",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1990,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01cc,
+ "VARIATION SELECTOR-221",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1991,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01cd,
+ "VARIATION SELECTOR-222",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1992,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01ce,
+ "VARIATION SELECTOR-223",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1993,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01cf,
+ "VARIATION SELECTOR-224",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1994,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01d0,
+ "VARIATION SELECTOR-225",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1995,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01d1,
+ "VARIATION SELECTOR-226",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1996,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01d2,
+ "VARIATION SELECTOR-227",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1997,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01d3,
+ "VARIATION SELECTOR-228",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1998,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01d4,
+ "VARIATION SELECTOR-229",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 1999,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01d5,
+ "VARIATION SELECTOR-230",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 2000,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01d6,
+ "VARIATION SELECTOR-231",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 2001,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01d7,
+ "VARIATION SELECTOR-232",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 2002,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01d8,
+ "VARIATION SELECTOR-233",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 2003,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01d9,
+ "VARIATION SELECTOR-234",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 2004,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01da,
+ "VARIATION SELECTOR-235",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 2005,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01db,
+ "VARIATION SELECTOR-236",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 2006,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01dc,
+ "VARIATION SELECTOR-237",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 2007,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01dd,
+ "VARIATION SELECTOR-238",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 2008,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01de,
+ "VARIATION SELECTOR-239",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 2009,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01df,
+ "VARIATION SELECTOR-240",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 2010,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01e0,
+ "VARIATION SELECTOR-241",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 2011,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01e1,
+ "VARIATION SELECTOR-242",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 2012,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01e2,
+ "VARIATION SELECTOR-243",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 2013,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01e3,
+ "VARIATION SELECTOR-244",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 2014,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01e4,
+ "VARIATION SELECTOR-245",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 2015,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01e5,
+ "VARIATION SELECTOR-246",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 2016,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01e6,
+ "VARIATION SELECTOR-247",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 2017,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01e7,
+ "VARIATION SELECTOR-248",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 2018,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01e8,
+ "VARIATION SELECTOR-249",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 2019,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01e9,
+ "VARIATION SELECTOR-250",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 2020,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01ea,
+ "VARIATION SELECTOR-251",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 2021,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01eb,
+ "VARIATION SELECTOR-252",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 2022,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01ec,
+ "VARIATION SELECTOR-253",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 2023,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01ed,
+ "VARIATION SELECTOR-254",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 2024,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01ee,
+ "VARIATION SELECTOR-255",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 2025,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01ef,
+ "VARIATION SELECTOR-256",
+ NULL,
+ NULL,
+ {
+ category::mark_nonspacing,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::is_index,
+ 0,
+ bidi_class::weak_non_spacing_mark,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::extend,
+ },
+ 2026,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01f0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01f1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01f2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01f3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01f4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01f5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01f6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01f7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01f8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01f9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01fa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01fb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01fc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01fd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01fe,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe01ff,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0200,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0201,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0202,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0203,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0204,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0205,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0206,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0207,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0208,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0209,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe020a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe020b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe020c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe020d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe020e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe020f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0210,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0211,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0212,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0213,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0214,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0215,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0216,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0217,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0218,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0219,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe021a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe021b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe021c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe021d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe021e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe021f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0220,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0221,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0222,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0223,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0224,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0225,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0226,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0227,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0228,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0229,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe022a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe022b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe022c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe022d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe022e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe022f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0230,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0231,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0232,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0233,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0234,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0235,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0236,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0237,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0238,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0239,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe023a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe023b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe023c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe023d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe023e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe023f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0240,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0241,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0242,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0243,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0244,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0245,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0246,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0247,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0248,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0249,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe024a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe024b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe024c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe024d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe024e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe024f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0250,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0251,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0252,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0253,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0254,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0255,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0256,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0257,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0258,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0259,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe025a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe025b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe025c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe025d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe025e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe025f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0260,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0261,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0262,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0263,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0264,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0265,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0266,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0267,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0268,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0269,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe026a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe026b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe026c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe026d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe026e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe026f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0270,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0271,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0272,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0273,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0274,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0275,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0276,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0277,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0278,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0279,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe027a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe027b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe027c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe027d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe027e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe027f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0280,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0281,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0282,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0283,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0284,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0285,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0286,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0287,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0288,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0289,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe028a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe028b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe028c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe028d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe028e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe028f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0290,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0291,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0292,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0293,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0294,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0295,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0296,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0297,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0298,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0299,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe029a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe029b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe029c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe029d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe029e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe029f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02a0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02a1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02a2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02a3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02a4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02a5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02a6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02a7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02a8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02a9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02aa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02ab,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02ac,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02ad,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02ae,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02af,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02b0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02b1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02b2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02b3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02b4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02b5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02b6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02b7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02b8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02b9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02ba,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02bb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02bc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02bd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02be,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02bf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02c0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02c1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02c2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02c3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02c4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02c5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02c6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02c7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02c8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02c9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02ca,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02cb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02cc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02cd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02ce,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02cf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02d0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02d1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02d2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02d3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02d4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02d5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02d6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02d7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02d8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02d9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02da,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02db,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02dc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02dd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02de,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02df,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02e0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02e1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02e2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02e3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02e4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02e5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02e6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02e7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02e8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02e9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02ea,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02eb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02ec,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02ed,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02ee,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02ef,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02f0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02f1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02f2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02f3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02f4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02f5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02f6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02f7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02f8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02f9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02fa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02fb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02fc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02fd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02fe,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe02ff,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0300,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0301,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0302,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0303,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0304,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0305,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0306,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0307,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0308,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0309,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe030a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe030b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe030c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe030d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe030e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe030f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0310,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0311,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0312,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0313,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0314,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0315,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0316,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0317,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0318,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0319,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe031a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe031b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe031c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe031d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe031e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe031f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0320,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0321,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0322,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0323,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0324,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0325,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0326,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0327,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0328,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0329,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe032a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe032b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe032c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe032d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe032e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe032f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0330,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0331,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0332,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0333,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0334,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0335,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0336,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0337,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0338,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0339,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe033a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe033b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe033c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe033d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe033e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe033f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0340,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0341,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0342,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0343,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0344,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0345,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0346,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0347,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0348,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0349,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe034a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe034b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe034c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe034d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe034e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe034f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0350,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0351,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0352,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0353,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0354,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0355,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0356,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0357,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0358,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0359,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe035a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe035b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe035c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe035d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe035e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe035f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0360,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0361,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0362,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0363,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0364,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0365,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0366,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0367,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0368,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0369,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe036a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe036b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe036c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe036d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe036e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe036f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0370,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0371,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0372,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0373,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0374,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0375,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0376,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0377,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0378,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0379,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe037a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe037b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe037c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe037d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe037e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe037f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0380,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0381,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0382,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0383,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0384,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0385,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0386,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0387,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0388,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0389,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe038a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe038b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe038c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe038d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe038e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe038f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0390,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0391,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0392,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0393,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0394,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0395,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0396,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0397,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0398,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0399,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe039a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe039b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe039c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe039d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe039e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe039f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03a0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03a1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03a2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03a3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03a4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03a5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03a6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03a7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03a8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03a9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03aa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03ab,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03ac,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03ad,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03ae,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03af,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03b0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03b1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03b2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03b3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03b4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03b5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03b6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03b7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03b8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03b9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03ba,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03bb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03bc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03bd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03be,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03bf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03c0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03c1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03c2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03c3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03c4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03c5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03c6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03c7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03c8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03c9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03ca,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03cb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03cc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03cd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03ce,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03cf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03d0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03d1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03d2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03d3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03d4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03d5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03d6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03d7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03d8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03d9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03da,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03db,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03dc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03dd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03de,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03df,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03e0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03e1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03e2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03e3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03e4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03e5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03e6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03e7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03e8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03e9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03ea,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03eb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03ec,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03ed,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03ee,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03ef,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03f0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03f1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03f2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03f3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03f4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03f5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03f6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03f7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03f8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03f9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03fa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03fb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03fc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03fd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03fe,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe03ff,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0400,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0401,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0402,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0403,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0404,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0405,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0406,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0407,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0408,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0409,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe040a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe040b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe040c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe040d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe040e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe040f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0410,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0411,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0412,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0413,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0414,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0415,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0416,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0417,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0418,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0419,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe041a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe041b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe041c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe041d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe041e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe041f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0420,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0421,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0422,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0423,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0424,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0425,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0426,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0427,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0428,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0429,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe042a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe042b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe042c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe042d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe042e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe042f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0430,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0431,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0432,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0433,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0434,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0435,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0436,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0437,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0438,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0439,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe043a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe043b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe043c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe043d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe043e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe043f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0440,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0441,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0442,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0443,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0444,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0445,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0446,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0447,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0448,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0449,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe044a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe044b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe044c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe044d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe044e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe044f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0450,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0451,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0452,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0453,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0454,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0455,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0456,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0457,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0458,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0459,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe045a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe045b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe045c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe045d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe045e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe045f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0460,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0461,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0462,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0463,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0464,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0465,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0466,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0467,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0468,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0469,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe046a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe046b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe046c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe046d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe046e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe046f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0470,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0471,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0472,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0473,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0474,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0475,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0476,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0477,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0478,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0479,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe047a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe047b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe047c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe047d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe047e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe047f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0480,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0481,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0482,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0483,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0484,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0485,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0486,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0487,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0488,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0489,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe048a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe048b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe048c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe048d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe048e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe048f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0490,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0491,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0492,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0493,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0494,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0495,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0496,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0497,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0498,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0499,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe049a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe049b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe049c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe049d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe049e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe049f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04a0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04a1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04a2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04a3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04a4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04a5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04a6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04a7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04a8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04a9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04aa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04ab,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04ac,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04ad,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04ae,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04af,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04b0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04b1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04b2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04b3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04b4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04b5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04b6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04b7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04b8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04b9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04ba,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04bb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04bc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04bd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04be,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04bf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04c0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04c1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04c2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04c3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04c4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04c5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04c6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04c7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04c8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04c9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04ca,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04cb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04cc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04cd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04ce,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04cf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04d0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04d1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04d2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04d3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04d4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04d5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04d6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04d7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04d8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04d9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04da,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04db,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04dc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04dd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04de,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04df,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04e0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04e1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04e2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04e3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04e4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04e5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04e6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04e7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04e8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04e9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04ea,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04eb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04ec,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04ed,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04ee,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04ef,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04f0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04f1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04f2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04f3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04f4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04f5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04f6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04f7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04f8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04f9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04fa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04fb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04fc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04fd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04fe,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe04ff,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0500,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0501,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0502,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0503,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0504,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0505,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0506,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0507,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0508,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0509,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe050a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe050b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe050c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe050d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe050e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe050f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0510,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0511,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0512,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0513,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0514,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0515,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0516,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0517,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0518,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0519,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe051a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe051b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe051c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe051d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe051e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe051f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0520,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0521,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0522,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0523,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0524,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0525,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0526,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0527,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0528,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0529,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe052a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe052b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe052c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe052d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe052e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe052f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0530,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0531,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0532,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0533,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0534,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0535,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0536,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0537,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0538,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0539,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe053a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe053b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe053c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe053d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe053e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe053f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0540,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0541,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0542,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0543,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0544,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0545,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0546,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0547,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0548,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0549,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe054a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe054b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe054c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe054d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe054e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe054f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0550,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0551,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0552,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0553,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0554,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0555,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0556,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0557,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0558,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0559,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe055a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe055b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe055c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe055d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe055e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe055f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0560,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0561,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0562,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0563,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0564,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0565,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0566,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0567,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0568,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0569,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe056a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe056b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe056c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe056d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe056e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe056f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0570,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0571,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0572,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0573,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0574,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0575,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0576,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0577,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0578,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0579,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe057a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe057b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe057c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe057d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe057e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe057f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0580,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0581,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0582,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0583,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0584,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0585,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0586,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0587,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0588,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0589,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe058a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe058b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe058c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe058d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe058e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe058f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0590,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0591,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0592,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0593,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0594,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0595,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0596,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0597,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0598,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0599,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe059a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe059b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe059c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe059d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe059e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe059f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05a0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05a1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05a2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05a3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05a4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05a5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05a6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05a7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05a8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05a9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05aa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05ab,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05ac,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05ad,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05ae,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05af,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05b0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05b1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05b2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05b3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05b4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05b5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05b6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05b7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05b8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05b9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05ba,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05bb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05bc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05bd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05be,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05bf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05c0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05c1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05c2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05c3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05c4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05c5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05c6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05c7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05c8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05c9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05ca,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05cb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05cc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05cd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05ce,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05cf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05d0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05d1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05d2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05d3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05d4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05d5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05d6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05d7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05d8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05d9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05da,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05db,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05dc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05dd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05de,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05df,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05e0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05e1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05e2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05e3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05e4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05e5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05e6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05e7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05e8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05e9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05ea,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05eb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05ec,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05ed,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05ee,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05ef,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05f0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05f1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05f2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05f3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05f4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05f5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05f6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05f7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05f8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05f9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05fa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05fb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05fc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05fd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05fe,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe05ff,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0600,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0601,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0602,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0603,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0604,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0605,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0606,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0607,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0608,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0609,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe060a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe060b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe060c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe060d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe060e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe060f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0610,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0611,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0612,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0613,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0614,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0615,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0616,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0617,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0618,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0619,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe061a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe061b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe061c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe061d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe061e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe061f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0620,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0621,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0622,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0623,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0624,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0625,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0626,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0627,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0628,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0629,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe062a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe062b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe062c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe062d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe062e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe062f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0630,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0631,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0632,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0633,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0634,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0635,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0636,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0637,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0638,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0639,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe063a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe063b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe063c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe063d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe063e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe063f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0640,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0641,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0642,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0643,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0644,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0645,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0646,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0647,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0648,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0649,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe064a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe064b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe064c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe064d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe064e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe064f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0650,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0651,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0652,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0653,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0654,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0655,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0656,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0657,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0658,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0659,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe065a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe065b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe065c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe065d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe065e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe065f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0660,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0661,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0662,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0663,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0664,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0665,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0666,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0667,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0668,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0669,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe066a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe066b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe066c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe066d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe066e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe066f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0670,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0671,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0672,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0673,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0674,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0675,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0676,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0677,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0678,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0679,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe067a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe067b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe067c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe067d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe067e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe067f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0680,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0681,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0682,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0683,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0684,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0685,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0686,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0687,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0688,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0689,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe068a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe068b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe068c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe068d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe068e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe068f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0690,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0691,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0692,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0693,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0694,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0695,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0696,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0697,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0698,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0699,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe069a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe069b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe069c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe069d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe069e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe069f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06a0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06a1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06a2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06a3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06a4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06a5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06a6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06a7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06a8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06a9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06aa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06ab,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06ac,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06ad,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06ae,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06af,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06b0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06b1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06b2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06b3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06b4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06b5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06b6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06b7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06b8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06b9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06ba,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06bb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06bc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06bd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06be,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06bf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06c0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06c1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06c2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06c3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06c4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06c5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06c6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06c7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06c8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06c9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06ca,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06cb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06cc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06cd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06ce,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06cf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06d0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06d1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06d2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06d3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06d4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06d5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06d6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06d7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06d8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06d9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06da,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06db,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06dc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06dd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06de,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06df,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06e0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06e1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06e2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06e3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06e4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06e5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06e6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06e7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06e8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06e9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06ea,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06eb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06ec,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06ed,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06ee,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06ef,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06f0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06f1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06f2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06f3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06f4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06f5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06f6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06f7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06f8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06f9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06fa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06fb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06fc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06fd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06fe,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe06ff,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0700,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0701,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0702,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0703,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0704,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0705,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0706,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0707,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0708,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0709,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe070a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe070b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe070c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe070d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe070e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe070f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0710,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0711,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0712,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0713,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0714,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0715,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0716,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0717,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0718,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0719,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe071a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe071b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe071c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe071d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe071e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe071f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0720,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0721,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0722,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0723,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0724,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0725,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0726,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0727,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0728,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0729,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe072a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe072b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe072c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe072d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe072e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe072f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0730,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0731,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0732,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0733,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0734,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0735,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0736,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0737,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0738,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0739,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe073a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe073b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe073c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe073d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe073e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe073f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0740,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0741,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0742,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0743,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0744,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0745,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0746,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0747,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0748,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0749,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe074a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe074b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe074c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe074d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe074e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe074f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0750,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0751,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0752,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0753,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0754,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0755,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0756,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0757,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0758,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0759,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe075a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe075b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe075c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe075d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe075e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe075f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0760,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0761,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0762,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0763,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0764,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0765,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0766,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0767,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0768,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0769,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe076a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe076b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe076c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe076d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe076e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe076f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0770,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0771,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0772,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0773,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0774,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0775,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0776,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0777,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0778,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0779,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe077a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe077b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe077c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe077d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe077e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe077f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0780,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0781,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0782,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0783,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0784,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0785,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0786,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0787,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0788,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0789,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe078a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe078b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe078c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe078d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe078e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe078f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0790,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0791,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0792,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0793,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0794,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0795,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0796,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0797,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0798,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0799,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe079a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe079b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe079c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe079d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe079e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe079f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07a0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07a1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07a2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07a3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07a4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07a5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07a6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07a7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07a8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07a9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07aa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07ab,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07ac,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07ad,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07ae,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07af,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07b0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07b1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07b2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07b3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07b4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07b5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07b6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07b7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07b8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07b9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07ba,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07bb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07bc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07bd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07be,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07bf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07c0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07c1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07c2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07c3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07c4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07c5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07c6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07c7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07c8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07c9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07ca,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07cb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07cc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07cd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07ce,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07cf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07d0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07d1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07d2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07d3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07d4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07d5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07d6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07d7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07d8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07d9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07da,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07db,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07dc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07dd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07de,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07df,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07e0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07e1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07e2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07e3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07e4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07e5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07e6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07e7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07e8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07e9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07ea,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07eb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07ec,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07ed,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07ee,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07ef,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07f0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07f1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07f2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07f3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07f4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07f5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07f6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07f7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07f8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07f9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07fa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07fb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07fc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07fd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07fe,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe07ff,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0800,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0801,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0802,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0803,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0804,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0805,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0806,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0807,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0808,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0809,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe080a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe080b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe080c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe080d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe080e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe080f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0810,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0811,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0812,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0813,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0814,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0815,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0816,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0817,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0818,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0819,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe081a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe081b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe081c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe081d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe081e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe081f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0820,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0821,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0822,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0823,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0824,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0825,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0826,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0827,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0828,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0829,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe082a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe082b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe082c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe082d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe082e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe082f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0830,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0831,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0832,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0833,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0834,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0835,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0836,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0837,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0838,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0839,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe083a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe083b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe083c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe083d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe083e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe083f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0840,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0841,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0842,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0843,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0844,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0845,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0846,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0847,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0848,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0849,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe084a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe084b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe084c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe084d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe084e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe084f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0850,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0851,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0852,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0853,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0854,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0855,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0856,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0857,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0858,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0859,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe085a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe085b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe085c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe085d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe085e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe085f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0860,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0861,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0862,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0863,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0864,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0865,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0866,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0867,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0868,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0869,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe086a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe086b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe086c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe086d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe086e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe086f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0870,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0871,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0872,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0873,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0874,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0875,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0876,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0877,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0878,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0879,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe087a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe087b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe087c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe087d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe087e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe087f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0880,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0881,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0882,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0883,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0884,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0885,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0886,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0887,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0888,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0889,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe088a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe088b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe088c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe088d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe088e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe088f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0890,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0891,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0892,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0893,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0894,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0895,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0896,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0897,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0898,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0899,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe089a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe089b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe089c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe089d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe089e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe089f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08a0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08a1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08a2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08a3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08a4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08a5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08a6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08a7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08a8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08a9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08aa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08ab,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08ac,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08ad,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08ae,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08af,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08b0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08b1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08b2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08b3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08b4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08b5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08b6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08b7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08b8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08b9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08ba,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08bb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08bc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08bd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08be,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08bf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08c0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08c1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08c2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08c3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08c4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08c5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08c6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08c7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08c8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08c9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08ca,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08cb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08cc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08cd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08ce,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08cf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08d0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08d1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08d2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08d3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08d4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08d5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08d6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08d7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08d8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08d9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08da,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08db,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08dc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08dd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08de,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08df,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08e0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08e1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08e2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08e3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08e4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08e5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08e6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08e7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08e8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08e9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08ea,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08eb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08ec,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08ed,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08ee,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08ef,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08f0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08f1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08f2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08f3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08f4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08f5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08f6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08f7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08f8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08f9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08fa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08fb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08fc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08fd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08fe,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe08ff,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0900,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0901,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0902,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0903,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0904,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0905,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0906,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0907,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0908,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0909,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe090a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe090b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe090c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe090d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe090e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe090f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0910,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0911,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0912,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0913,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0914,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0915,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0916,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0917,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0918,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0919,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe091a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe091b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe091c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe091d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe091e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe091f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0920,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0921,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0922,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0923,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0924,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0925,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0926,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0927,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0928,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0929,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe092a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe092b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe092c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe092d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe092e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe092f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0930,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0931,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0932,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0933,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0934,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0935,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0936,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0937,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0938,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0939,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe093a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe093b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe093c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe093d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe093e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe093f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0940,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0941,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0942,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0943,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0944,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0945,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0946,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0947,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0948,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0949,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe094a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe094b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe094c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe094d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe094e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe094f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0950,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0951,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0952,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0953,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0954,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0955,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0956,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0957,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0958,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0959,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe095a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe095b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe095c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe095d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe095e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe095f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0960,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0961,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0962,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0963,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0964,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0965,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0966,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0967,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0968,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0969,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe096a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe096b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe096c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe096d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe096e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe096f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0970,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0971,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0972,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0973,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0974,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0975,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0976,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0977,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0978,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0979,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe097a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe097b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe097c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe097d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe097e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe097f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0980,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0981,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0982,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0983,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0984,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0985,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0986,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0987,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0988,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0989,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe098a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe098b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe098c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe098d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe098e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe098f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0990,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0991,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0992,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0993,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0994,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0995,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0996,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0997,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0998,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0999,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe099a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe099b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe099c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe099d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe099e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe099f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09a0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09a1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09a2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09a3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09a4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09a5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09a6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09a7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09a8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09a9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09aa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09ab,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09ac,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09ad,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09ae,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09af,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09b0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09b1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09b2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09b3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09b4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09b5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09b6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09b7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09b8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09b9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09ba,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09bb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09bc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09bd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09be,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09bf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09c0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09c1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09c2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09c3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09c4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09c5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09c6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09c7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09c8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09c9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09ca,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09cb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09cc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09cd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09ce,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09cf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09d0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09d1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09d2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09d3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09d4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09d5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09d6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09d7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09d8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09d9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09da,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09db,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09dc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09dd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09de,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09df,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09e0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09e1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09e2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09e3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09e4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09e5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09e6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09e7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09e8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09e9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09ea,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09eb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09ec,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09ed,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09ee,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09ef,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09f0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09f1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09f2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09f3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09f4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09f5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09f6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09f7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09f8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09f9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09fa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09fb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09fc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09fd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09fe,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe09ff,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a00,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a01,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a02,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a03,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a04,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a05,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a06,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a07,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a08,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a09,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a0a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a0b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a0c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a0d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a0e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a0f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a10,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a11,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a12,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a13,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a14,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a15,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a16,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a17,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a18,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a19,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a1a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a1b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a1c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a1d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a1e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a1f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a20,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a21,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a22,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a23,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a24,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a25,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a26,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a27,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a28,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a29,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a2a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a2b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a2c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a2d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a2e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a2f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a30,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a31,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a32,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a33,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a34,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a35,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a36,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a37,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a38,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a39,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a3a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a3b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a3c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a3d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a3e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a3f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a40,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a41,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a42,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a43,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a44,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a45,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a46,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a47,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a48,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a49,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a4a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a4b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a4c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a4d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a4e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a4f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a50,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a51,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a52,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a53,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a54,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a55,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a56,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a57,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a58,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a59,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a5a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a5b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a5c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a5d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a5e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a5f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a60,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a61,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a62,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a63,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a64,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a65,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a66,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a67,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a68,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a69,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a6a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a6b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a6c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a6d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a6e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a6f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a70,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a71,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a72,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a73,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a74,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a75,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a76,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a77,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a78,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a79,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a7a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a7b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a7c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a7d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a7e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a7f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a80,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a81,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a82,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a83,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a84,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a85,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a86,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a87,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a88,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a89,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a8a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a8b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a8c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a8d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a8e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a8f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a90,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a91,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a92,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a93,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a94,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a95,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a96,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a97,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a98,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a99,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a9a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a9b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a9c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a9d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a9e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0a9f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0aa0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0aa1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0aa2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0aa3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0aa4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0aa5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0aa6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0aa7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0aa8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0aa9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0aaa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0aab,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0aac,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0aad,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0aae,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0aaf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ab0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ab1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ab2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ab3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ab4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ab5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ab6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ab7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ab8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ab9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0aba,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0abb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0abc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0abd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0abe,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0abf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ac0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ac1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ac2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ac3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ac4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ac5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ac6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ac7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ac8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ac9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0aca,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0acb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0acc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0acd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ace,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0acf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ad0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ad1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ad2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ad3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ad4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ad5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ad6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ad7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ad8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ad9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ada,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0adb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0adc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0add,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ade,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0adf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ae0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ae1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ae2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ae3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ae4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ae5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ae6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ae7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ae8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ae9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0aea,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0aeb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0aec,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0aed,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0aee,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0aef,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0af0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0af1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0af2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0af3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0af4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0af5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0af6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0af7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0af8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0af9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0afa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0afb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0afc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0afd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0afe,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0aff,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b00,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b01,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b02,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b03,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b04,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b05,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b06,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b07,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b08,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b09,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b0a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b0b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b0c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b0d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b0e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b0f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b10,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b11,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b12,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b13,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b14,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b15,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b16,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b17,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b18,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b19,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b1a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b1b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b1c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b1d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b1e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b1f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b20,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b21,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b22,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b23,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b24,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b25,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b26,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b27,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b28,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b29,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b2a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b2b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b2c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b2d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b2e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b2f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b30,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b31,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b32,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b33,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b34,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b35,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b36,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b37,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b38,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b39,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b3a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b3b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b3c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b3d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b3e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b3f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b40,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b41,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b42,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b43,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b44,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b45,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b46,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b47,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b48,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b49,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b4a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b4b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b4c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b4d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b4e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b4f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b50,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b51,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b52,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b53,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b54,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b55,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b56,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b57,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b58,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b59,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b5a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b5b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b5c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b5d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b5e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b5f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b60,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b61,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b62,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b63,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b64,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b65,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b66,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b67,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b68,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b69,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b6a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b6b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b6c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b6d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b6e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b6f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b70,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b71,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b72,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b73,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b74,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b75,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b76,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b77,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b78,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b79,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b7a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b7b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b7c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b7d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b7e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b7f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b80,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b81,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b82,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b83,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b84,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b85,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b86,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b87,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b88,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b89,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b8a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b8b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b8c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b8d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b8e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b8f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b90,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b91,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b92,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b93,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b94,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b95,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b96,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b97,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b98,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b99,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b9a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b9b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b9c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b9d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b9e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0b9f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ba0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ba1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ba2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ba3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ba4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ba5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ba6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ba7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ba8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ba9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0baa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bab,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bac,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bad,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bae,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0baf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bb0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bb1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bb2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bb3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bb4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bb5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bb6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bb7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bb8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bb9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bba,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bbb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bbc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bbd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bbe,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bbf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bc0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bc1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bc2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bc3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bc4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bc5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bc6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bc7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bc8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bc9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bca,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bcb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bcc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bcd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bce,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bcf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bd0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bd1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bd2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bd3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bd4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bd5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bd6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bd7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bd8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bd9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bda,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bdb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bdc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bdd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bde,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bdf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0be0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0be1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0be2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0be3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0be4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0be5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0be6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0be7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0be8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0be9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bea,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0beb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bec,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bed,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bee,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bef,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bf0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bf1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bf2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bf3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bf4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bf5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bf6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bf7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bf8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bf9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bfa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bfb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bfc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bfd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bfe,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0bff,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c00,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c01,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c02,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c03,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c04,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c05,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c06,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c07,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c08,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c09,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c0a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c0b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c0c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c0d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c0e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c0f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c10,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c11,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c12,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c13,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c14,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c15,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c16,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c17,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c18,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c19,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c1a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c1b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c1c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c1d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c1e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c1f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c20,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c21,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c22,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c23,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c24,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c25,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c26,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c27,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c28,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c29,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c2a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c2b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c2c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c2d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c2e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c2f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c30,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c31,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c32,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c33,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c34,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c35,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c36,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c37,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c38,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c39,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c3a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c3b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c3c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c3d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c3e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c3f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c40,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c41,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c42,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c43,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c44,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c45,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c46,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c47,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c48,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c49,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c4a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c4b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c4c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c4d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c4e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c4f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c50,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c51,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c52,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c53,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c54,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c55,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c56,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c57,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c58,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c59,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c5a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c5b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c5c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c5d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c5e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c5f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c60,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c61,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c62,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c63,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c64,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c65,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c66,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c67,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c68,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c69,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c6a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c6b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c6c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c6d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c6e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c6f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c70,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c71,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c72,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c73,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c74,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c75,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c76,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c77,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c78,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c79,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c7a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c7b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c7c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c7d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c7e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c7f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c80,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c81,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c82,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c83,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c84,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c85,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c86,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c87,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c88,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c89,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c8a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c8b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c8c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c8d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c8e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c8f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c90,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c91,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c92,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c93,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c94,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c95,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c96,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c97,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c98,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c99,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c9a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c9b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c9c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c9d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c9e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0c9f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ca0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ca1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ca2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ca3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ca4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ca5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ca6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ca7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ca8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ca9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0caa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cab,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cac,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cad,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cae,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0caf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cb0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cb1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cb2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cb3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cb4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cb5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cb6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cb7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cb8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cb9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cba,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cbb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cbc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cbd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cbe,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cbf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cc0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cc1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cc2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cc3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cc4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cc5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cc6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cc7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cc8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cc9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cca,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ccb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ccc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ccd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cce,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ccf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cd0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cd1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cd2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cd3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cd4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cd5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cd6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cd7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cd8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cd9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cda,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cdb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cdc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cdd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cde,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cdf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ce0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ce1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ce2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ce3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ce4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ce5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ce6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ce7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ce8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ce9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cea,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ceb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cec,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ced,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cee,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cef,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cf0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cf1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cf2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cf3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cf4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cf5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cf6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cf7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cf8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cf9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cfa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cfb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cfc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cfd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cfe,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0cff,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d00,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d01,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d02,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d03,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d04,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d05,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d06,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d07,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d08,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d09,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d0a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d0b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d0c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d0d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d0e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d0f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d10,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d11,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d12,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d13,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d14,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d15,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d16,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d17,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d18,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d19,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d1a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d1b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d1c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d1d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d1e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d1f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d20,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d21,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d22,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d23,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d24,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d25,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d26,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d27,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d28,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d29,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d2a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d2b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d2c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d2d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d2e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d2f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d30,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d31,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d32,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d33,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d34,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d35,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d36,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d37,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d38,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d39,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d3a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d3b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d3c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d3d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d3e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d3f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d40,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d41,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d42,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d43,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d44,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d45,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d46,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d47,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d48,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d49,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d4a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d4b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d4c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d4d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d4e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d4f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d50,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d51,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d52,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d53,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d54,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d55,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d56,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d57,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d58,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d59,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d5a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d5b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d5c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d5d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d5e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d5f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d60,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d61,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d62,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d63,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d64,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d65,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d66,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d67,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d68,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d69,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d6a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d6b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d6c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d6d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d6e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d6f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d70,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d71,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d72,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d73,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d74,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d75,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d76,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d77,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d78,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d79,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d7a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d7b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d7c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d7d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d7e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d7f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d80,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d81,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d82,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d83,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d84,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d85,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d86,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d87,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d88,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d89,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d8a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d8b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d8c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d8d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d8e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d8f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d90,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d91,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d92,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d93,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d94,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d95,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d96,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d97,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d98,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d99,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d9a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d9b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d9c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d9d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d9e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0d9f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0da0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0da1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0da2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0da3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0da4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0da5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0da6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0da7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0da8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0da9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0daa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0dab,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0dac,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0dad,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0dae,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0daf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0db0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0db1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0db2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0db3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0db4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0db5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0db6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0db7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0db8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0db9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0dba,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0dbb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0dbc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0dbd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0dbe,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0dbf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0dc0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0dc1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0dc2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0dc3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0dc4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0dc5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0dc6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0dc7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0dc8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0dc9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0dca,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0dcb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0dcc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0dcd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0dce,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0dcf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0dd0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0dd1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0dd2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0dd3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0dd4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0dd5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0dd6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0dd7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0dd8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0dd9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0dda,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ddb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ddc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ddd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0dde,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ddf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0de0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0de1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0de2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0de3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0de4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0de5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0de6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0de7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0de8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0de9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0dea,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0deb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0dec,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ded,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0dee,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0def,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0df0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0df1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0df2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0df3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0df4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0df5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0df6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0df7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0df8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0df9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0dfa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0dfb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0dfc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0dfd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0dfe,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0dff,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e00,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e01,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e02,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e03,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e04,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e05,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e06,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e07,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e08,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e09,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e0a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e0b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e0c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e0d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e0e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e0f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e10,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e11,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e12,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e13,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e14,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e15,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e16,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e17,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e18,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e19,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e1a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e1b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e1c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e1d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e1e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e1f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e20,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e21,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e22,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e23,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e24,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e25,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e26,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e27,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e28,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e29,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e2a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e2b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e2c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e2d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e2e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e2f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e30,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e31,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e32,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e33,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e34,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e35,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e36,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e37,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e38,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e39,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e3a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e3b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e3c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e3d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e3e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e3f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e40,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e41,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e42,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e43,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e44,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e45,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e46,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e47,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e48,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e49,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e4a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e4b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e4c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e4d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e4e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e4f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e50,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e51,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e52,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e53,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e54,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e55,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e56,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e57,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e58,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e59,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e5a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e5b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e5c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e5d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e5e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e5f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e60,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e61,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e62,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e63,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e64,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e65,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e66,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e67,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e68,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e69,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e6a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e6b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e6c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e6d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e6e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e6f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e70,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e71,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e72,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e73,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e74,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e75,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e76,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e77,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e78,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e79,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e7a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e7b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e7c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e7d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e7e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e7f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e80,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e81,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e82,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e83,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e84,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e85,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e86,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e87,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e88,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e89,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e8a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e8b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e8c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e8d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e8e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e8f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e90,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e91,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e92,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e93,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e94,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e95,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e96,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e97,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e98,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e99,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e9a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e9b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e9c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e9d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e9e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0e9f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ea0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ea1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ea2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ea3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ea4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ea5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ea6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ea7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ea8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ea9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0eaa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0eab,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0eac,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ead,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0eae,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0eaf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0eb0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0eb1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0eb2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0eb3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0eb4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0eb5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0eb6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0eb7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0eb8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0eb9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0eba,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ebb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ebc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ebd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ebe,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ebf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ec0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ec1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ec2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ec3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ec4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ec5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ec6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ec7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ec8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ec9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0eca,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ecb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ecc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ecd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ece,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ecf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ed0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ed1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ed2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ed3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ed4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ed5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ed6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ed7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ed8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ed9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0eda,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0edb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0edc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0edd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ede,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0edf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ee0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ee1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ee2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ee3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ee4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ee5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ee6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ee7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ee8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ee9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0eea,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0eeb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0eec,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0eed,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0eee,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0eef,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ef0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ef1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ef2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ef3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ef4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ef5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ef6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ef7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ef8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ef9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0efa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0efb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0efc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0efd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0efe,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0eff,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f00,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f01,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f02,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f03,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f04,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f05,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f06,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f07,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f08,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f09,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f0a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f0b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f0c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f0d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f0e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f0f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f10,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f11,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f12,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f13,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f14,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f15,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f16,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f17,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f18,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f19,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f1a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f1b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f1c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f1d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f1e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f1f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f20,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f21,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f22,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f23,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f24,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f25,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f26,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f27,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f28,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f29,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f2a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f2b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f2c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f2d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f2e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f2f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f30,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f31,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f32,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f33,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f34,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f35,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f36,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f37,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f38,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f39,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f3a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f3b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f3c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f3d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f3e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f3f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f40,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f41,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f42,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f43,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f44,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f45,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f46,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f47,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f48,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f49,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f4a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f4b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f4c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f4d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f4e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f4f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f50,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f51,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f52,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f53,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f54,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f55,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f56,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f57,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f58,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f59,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f5a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f5b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f5c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f5d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f5e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f5f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f60,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f61,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f62,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f63,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f64,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f65,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f66,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f67,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f68,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f69,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f6a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f6b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f6c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f6d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f6e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f6f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f70,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f71,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f72,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f73,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f74,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f75,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f76,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f77,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f78,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f79,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f7a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f7b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f7c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f7d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f7e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f7f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f80,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f81,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f82,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f83,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f84,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f85,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f86,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f87,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f88,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f89,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f8a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f8b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f8c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f8d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f8e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f8f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f90,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f91,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f92,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f93,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f94,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f95,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f96,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f97,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f98,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f99,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f9a,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f9b,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f9c,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f9d,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f9e,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0f9f,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fa0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fa1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fa2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fa3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fa4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fa5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fa6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fa7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fa8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fa9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0faa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fab,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fac,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fad,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fae,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0faf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fb0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fb1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fb2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fb3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fb4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fb5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fb6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fb7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fb8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fb9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fba,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fbb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fbc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fbd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fbe,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fbf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fc0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fc1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fc2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fc3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fc4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fc5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fc6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fc7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fc8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fc9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fca,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fcb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fcc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fcd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fce,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fcf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fd0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fd1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fd2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fd3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fd4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fd5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fd6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fd7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fd8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fd9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fda,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fdb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fdc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fdd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fde,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fdf,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fe0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fe1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fe2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fe3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fe4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fe5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fe6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fe7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fe8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fe9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fea,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0feb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fec,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fed,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fee,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fef,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ff0,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ff1,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ff2,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ff3,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ff4,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ff5,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ff6,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ff7,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ff8,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ff9,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ffa,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ffb,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ffc,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ffd,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0ffe,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xe0fff,
+ "",
+ NULL,
+ NULL,
+ {
+ category::unknown,
+ join_type::none,
+ word_break::any,
+ true,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+};
+
+
+}}} // namespaces

Added: sandbox/SOC/2009/unicode/libs/unicode/src/ucd/uni_ucd_interface_impl_data_12.ipp
==============================================================================
--- (empty file)
+++ sandbox/SOC/2009/unicode/libs/unicode/src/ucd/uni_ucd_interface_impl_data_12.ipp 2009-06-20 11:05:18 EDT (Sat, 20 Jun 2009)
@@ -0,0 +1,196650 @@
+// Though this file is under the Boost license, it is NOT (or not yet) part of
+// Boost!
+
+// Copyright Graham Barnett, Rogier van Dalen 2005.
+// Use, modification, and distribution are subject to the Boost Software
+// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
+// http://www.boost.org/LICENSE_1_0.txt)
+
+// This file was created using information from the
+// www.unicode.org web site
+// License http://www.unicode.org/copyright.html
+
+/**** This file should not be included in any file manually ****/
+/**** This file is automatically generated and should not be modified.****/
+/**** Data in this file should not be accessed directly except ****/
+/**** through the single published interface as documented in Boost ****/
+
+
+using namespace boost::unicode;
+
+
+
+namespace boost { namespace unicode { namespace ucd {
+
+
+
+
+static const unichar_data_internal __uni_char_data_f0000[]=
+{
+ { // char 0xf0000,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0001,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0002,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0003,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0004,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0005,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0006,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0007,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0008,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0009,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf000a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf000b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf000c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf000d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf000e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf000f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0010,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0011,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0012,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0013,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0014,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0015,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0016,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0017,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0018,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0019,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf001a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf001b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf001c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf001d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf001e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf001f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0020,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0021,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0022,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0023,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0024,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0025,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0026,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0027,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0028,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0029,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf002a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf002b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf002c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf002d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf002e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf002f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0030,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0031,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0032,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0033,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0034,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0035,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0036,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0037,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0038,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0039,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf003a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf003b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf003c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf003d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf003e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf003f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0040,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0041,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0042,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0043,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0044,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0045,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0046,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0047,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0048,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0049,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf004a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf004b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf004c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf004d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf004e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf004f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0050,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0051,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0052,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0053,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0054,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0055,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0056,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0057,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0058,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0059,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf005a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf005b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf005c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf005d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf005e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf005f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0060,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0061,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0062,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0063,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0064,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0065,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0066,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0067,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0068,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0069,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf006a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf006b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf006c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf006d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf006e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf006f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0070,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0071,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0072,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0073,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0074,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0075,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0076,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0077,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0078,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0079,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf007a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf007b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf007c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf007d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf007e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf007f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0080,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0081,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0082,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0083,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0084,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0085,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0086,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0087,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0088,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0089,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf008a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf008b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf008c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf008d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf008e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf008f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0090,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0091,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0092,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0093,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0094,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0095,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0096,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0097,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0098,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0099,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf009a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf009b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf009c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf009d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf009e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf009f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00a0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00a1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00a2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00a3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00a4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00a5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00a6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00a7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00a8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00a9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00aa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00ab,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00ac,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00ad,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00ae,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00af,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00b0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00b1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00b2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00b3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00b4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00b5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00b6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00b7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00b8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00b9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00ba,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00bb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00bc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00bd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00be,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00bf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00c0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00c1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00c2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00c3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00c4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00c5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00c6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00c7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00c8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00c9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00ca,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00cb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00cc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00cd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00ce,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00cf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00d0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00d1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00d2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00d3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00d4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00d5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00d6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00d7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00d8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00d9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00da,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00db,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00dc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00dd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00de,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00df,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00e0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00e1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00e2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00e3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00e4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00e5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00e6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00e7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00e8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00e9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00ea,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00eb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00ec,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00ed,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00ee,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00ef,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00f0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00f1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00f2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00f3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00f4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00f5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00f6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00f7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00f8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00f9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00fa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00fb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00fc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00fd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00fe,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf00ff,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0100,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0101,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0102,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0103,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0104,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0105,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0106,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0107,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0108,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0109,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf010a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf010b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf010c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf010d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf010e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf010f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0110,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0111,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0112,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0113,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0114,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0115,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0116,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0117,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0118,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0119,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf011a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf011b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf011c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf011d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf011e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf011f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0120,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0121,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0122,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0123,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0124,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0125,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0126,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0127,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0128,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0129,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf012a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf012b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf012c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf012d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf012e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf012f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0130,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0131,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0132,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0133,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0134,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0135,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0136,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0137,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0138,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0139,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf013a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf013b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf013c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf013d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf013e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf013f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0140,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0141,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0142,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0143,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0144,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0145,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0146,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0147,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0148,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0149,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf014a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf014b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf014c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf014d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf014e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf014f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0150,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0151,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0152,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0153,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0154,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0155,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0156,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0157,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0158,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0159,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf015a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf015b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf015c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf015d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf015e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf015f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0160,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0161,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0162,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0163,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0164,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0165,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0166,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0167,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0168,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0169,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf016a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf016b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf016c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf016d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf016e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf016f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0170,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0171,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0172,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0173,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0174,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0175,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0176,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0177,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0178,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0179,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf017a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf017b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf017c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf017d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf017e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf017f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0180,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0181,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0182,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0183,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0184,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0185,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0186,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0187,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0188,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0189,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf018a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf018b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf018c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf018d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf018e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf018f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0190,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0191,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0192,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0193,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0194,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0195,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0196,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0197,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0198,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0199,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf019a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf019b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf019c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf019d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf019e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf019f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01a0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01a1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01a2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01a3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01a4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01a5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01a6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01a7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01a8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01a9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01aa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01ab,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01ac,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01ad,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01ae,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01af,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01b0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01b1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01b2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01b3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01b4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01b5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01b6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01b7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01b8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01b9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01ba,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01bb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01bc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01bd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01be,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01bf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01c0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01c1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01c2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01c3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01c4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01c5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01c6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01c7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01c8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01c9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01ca,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01cb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01cc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01cd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01ce,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01cf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01d0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01d1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01d2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01d3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01d4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01d5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01d6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01d7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01d8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01d9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01da,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01db,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01dc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01dd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01de,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01df,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01e0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01e1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01e2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01e3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01e4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01e5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01e6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01e7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01e8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01e9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01ea,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01eb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01ec,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01ed,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01ee,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01ef,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01f0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01f1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01f2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01f3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01f4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01f5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01f6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01f7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01f8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01f9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01fa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01fb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01fc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01fd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01fe,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf01ff,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0200,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0201,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0202,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0203,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0204,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0205,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0206,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0207,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0208,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0209,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf020a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf020b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf020c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf020d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf020e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf020f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0210,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0211,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0212,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0213,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0214,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0215,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0216,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0217,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0218,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0219,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf021a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf021b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf021c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf021d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf021e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf021f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0220,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0221,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0222,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0223,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0224,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0225,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0226,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0227,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0228,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0229,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf022a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf022b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf022c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf022d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf022e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf022f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0230,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0231,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0232,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0233,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0234,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0235,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0236,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0237,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0238,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0239,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf023a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf023b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf023c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf023d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf023e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf023f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0240,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0241,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0242,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0243,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0244,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0245,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0246,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0247,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0248,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0249,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf024a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf024b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf024c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf024d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf024e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf024f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0250,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0251,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0252,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0253,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0254,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0255,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0256,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0257,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0258,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0259,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf025a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf025b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf025c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf025d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf025e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf025f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0260,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0261,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0262,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0263,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0264,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0265,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0266,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0267,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0268,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0269,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf026a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf026b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf026c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf026d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf026e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf026f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0270,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0271,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0272,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0273,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0274,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0275,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0276,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0277,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0278,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0279,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf027a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf027b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf027c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf027d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf027e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf027f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0280,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0281,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0282,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0283,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0284,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0285,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0286,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0287,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0288,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0289,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf028a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf028b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf028c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf028d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf028e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf028f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0290,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0291,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0292,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0293,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0294,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0295,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0296,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0297,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0298,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0299,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf029a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf029b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf029c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf029d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf029e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf029f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02a0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02a1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02a2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02a3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02a4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02a5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02a6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02a7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02a8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02a9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02aa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02ab,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02ac,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02ad,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02ae,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02af,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02b0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02b1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02b2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02b3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02b4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02b5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02b6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02b7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02b8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02b9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02ba,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02bb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02bc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02bd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02be,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02bf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02c0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02c1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02c2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02c3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02c4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02c5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02c6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02c7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02c8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02c9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02ca,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02cb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02cc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02cd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02ce,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02cf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02d0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02d1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02d2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02d3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02d4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02d5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02d6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02d7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02d8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02d9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02da,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02db,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02dc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02dd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02de,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02df,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02e0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02e1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02e2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02e3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02e4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02e5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02e6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02e7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02e8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02e9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02ea,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02eb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02ec,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02ed,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02ee,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02ef,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02f0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02f1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02f2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02f3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02f4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02f5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02f6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02f7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02f8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02f9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02fa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02fb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02fc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02fd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02fe,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf02ff,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0300,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0301,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0302,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0303,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0304,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0305,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0306,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0307,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0308,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0309,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf030a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf030b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf030c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf030d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf030e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf030f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0310,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0311,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0312,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0313,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0314,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0315,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0316,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0317,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0318,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0319,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf031a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf031b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf031c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf031d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf031e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf031f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0320,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0321,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0322,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0323,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0324,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0325,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0326,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0327,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0328,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0329,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf032a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf032b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf032c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf032d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf032e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf032f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0330,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0331,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0332,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0333,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0334,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0335,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0336,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0337,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0338,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0339,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf033a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf033b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf033c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf033d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf033e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf033f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0340,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0341,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0342,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0343,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0344,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0345,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0346,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0347,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0348,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0349,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf034a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf034b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf034c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf034d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf034e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf034f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0350,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0351,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0352,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0353,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0354,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0355,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0356,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0357,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0358,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0359,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf035a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf035b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf035c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf035d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf035e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf035f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0360,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0361,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0362,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0363,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0364,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0365,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0366,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0367,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0368,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0369,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf036a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf036b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf036c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf036d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf036e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf036f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0370,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0371,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0372,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0373,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0374,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0375,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0376,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0377,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0378,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0379,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf037a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf037b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf037c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf037d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf037e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf037f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0380,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0381,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0382,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0383,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0384,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0385,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0386,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0387,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0388,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0389,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf038a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf038b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf038c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf038d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf038e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf038f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0390,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0391,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0392,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0393,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0394,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0395,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0396,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0397,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0398,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0399,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf039a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf039b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf039c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf039d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf039e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf039f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03a0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03a1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03a2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03a3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03a4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03a5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03a6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03a7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03a8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03a9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03aa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03ab,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03ac,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03ad,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03ae,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03af,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03b0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03b1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03b2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03b3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03b4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03b5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03b6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03b7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03b8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03b9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03ba,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03bb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03bc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03bd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03be,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03bf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03c0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03c1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03c2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03c3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03c4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03c5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03c6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03c7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03c8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03c9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03ca,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03cb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03cc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03cd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03ce,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03cf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03d0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03d1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03d2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03d3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03d4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03d5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03d6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03d7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03d8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03d9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03da,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03db,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03dc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03dd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03de,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03df,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03e0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03e1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03e2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03e3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03e4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03e5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03e6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03e7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03e8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03e9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03ea,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03eb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03ec,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03ed,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03ee,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03ef,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03f0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03f1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03f2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03f3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03f4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03f5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03f6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03f7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03f8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03f9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03fa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03fb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03fc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03fd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03fe,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf03ff,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0400,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0401,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0402,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0403,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0404,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0405,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0406,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0407,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0408,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0409,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf040a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf040b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf040c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf040d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf040e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf040f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0410,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0411,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0412,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0413,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0414,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0415,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0416,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0417,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0418,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0419,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf041a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf041b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf041c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf041d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf041e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf041f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0420,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0421,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0422,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0423,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0424,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0425,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0426,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0427,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0428,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0429,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf042a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf042b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf042c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf042d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf042e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf042f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0430,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0431,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0432,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0433,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0434,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0435,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0436,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0437,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0438,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0439,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf043a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf043b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf043c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf043d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf043e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf043f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0440,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0441,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0442,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0443,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0444,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0445,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0446,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0447,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0448,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0449,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf044a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf044b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf044c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf044d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf044e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf044f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0450,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0451,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0452,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0453,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0454,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0455,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0456,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0457,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0458,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0459,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf045a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf045b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf045c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf045d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf045e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf045f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0460,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0461,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0462,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0463,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0464,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0465,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0466,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0467,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0468,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0469,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf046a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf046b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf046c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf046d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf046e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf046f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0470,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0471,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0472,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0473,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0474,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0475,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0476,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0477,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0478,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0479,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf047a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf047b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf047c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf047d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf047e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf047f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0480,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0481,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0482,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0483,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0484,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0485,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0486,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0487,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0488,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0489,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf048a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf048b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf048c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf048d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf048e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf048f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0490,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0491,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0492,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0493,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0494,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0495,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0496,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0497,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0498,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0499,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf049a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf049b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf049c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf049d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf049e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf049f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04a0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04a1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04a2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04a3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04a4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04a5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04a6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04a7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04a8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04a9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04aa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04ab,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04ac,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04ad,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04ae,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04af,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04b0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04b1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04b2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04b3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04b4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04b5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04b6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04b7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04b8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04b9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04ba,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04bb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04bc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04bd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04be,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04bf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04c0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04c1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04c2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04c3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04c4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04c5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04c6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04c7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04c8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04c9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04ca,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04cb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04cc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04cd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04ce,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04cf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04d0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04d1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04d2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04d3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04d4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04d5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04d6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04d7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04d8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04d9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04da,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04db,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04dc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04dd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04de,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04df,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04e0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04e1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04e2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04e3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04e4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04e5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04e6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04e7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04e8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04e9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04ea,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04eb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04ec,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04ed,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04ee,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04ef,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04f0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04f1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04f2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04f3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04f4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04f5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04f6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04f7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04f8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04f9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04fa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04fb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04fc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04fd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04fe,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf04ff,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0500,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0501,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0502,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0503,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0504,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0505,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0506,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0507,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0508,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0509,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf050a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf050b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf050c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf050d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf050e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf050f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0510,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0511,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0512,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0513,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0514,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0515,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0516,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0517,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0518,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0519,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf051a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf051b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf051c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf051d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf051e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf051f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0520,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0521,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0522,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0523,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0524,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0525,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0526,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0527,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0528,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0529,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf052a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf052b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf052c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf052d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf052e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf052f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0530,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0531,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0532,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0533,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0534,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0535,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0536,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0537,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0538,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0539,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf053a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf053b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf053c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf053d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf053e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf053f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0540,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0541,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0542,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0543,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0544,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0545,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0546,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0547,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0548,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0549,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf054a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf054b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf054c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf054d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf054e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf054f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0550,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0551,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0552,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0553,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0554,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0555,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0556,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0557,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0558,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0559,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf055a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf055b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf055c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf055d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf055e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf055f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0560,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0561,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0562,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0563,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0564,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0565,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0566,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0567,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0568,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0569,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf056a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf056b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf056c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf056d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf056e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf056f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0570,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0571,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0572,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0573,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0574,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0575,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0576,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0577,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0578,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0579,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf057a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf057b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf057c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf057d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf057e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf057f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0580,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0581,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0582,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0583,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0584,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0585,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0586,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0587,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0588,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0589,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf058a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf058b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf058c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf058d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf058e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf058f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0590,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0591,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0592,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0593,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0594,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0595,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0596,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0597,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0598,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0599,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf059a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf059b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf059c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf059d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf059e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf059f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05a0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05a1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05a2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05a3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05a4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05a5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05a6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05a7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05a8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05a9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05aa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05ab,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05ac,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05ad,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05ae,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05af,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05b0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05b1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05b2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05b3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05b4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05b5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05b6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05b7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05b8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05b9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05ba,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05bb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05bc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05bd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05be,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05bf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05c0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05c1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05c2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05c3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05c4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05c5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05c6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05c7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05c8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05c9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05ca,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05cb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05cc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05cd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05ce,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05cf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05d0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05d1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05d2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05d3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05d4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05d5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05d6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05d7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05d8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05d9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05da,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05db,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05dc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05dd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05de,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05df,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05e0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05e1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05e2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05e3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05e4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05e5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05e6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05e7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05e8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05e9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05ea,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05eb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05ec,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05ed,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05ee,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05ef,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05f0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05f1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05f2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05f3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05f4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05f5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05f6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05f7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05f8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05f9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05fa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05fb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05fc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05fd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05fe,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf05ff,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0600,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0601,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0602,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0603,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0604,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0605,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0606,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0607,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0608,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0609,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf060a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf060b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf060c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf060d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf060e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf060f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0610,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0611,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0612,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0613,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0614,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0615,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0616,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0617,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0618,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0619,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf061a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf061b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf061c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf061d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf061e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf061f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0620,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0621,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0622,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0623,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0624,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0625,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0626,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0627,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0628,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0629,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf062a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf062b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf062c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf062d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf062e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf062f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0630,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0631,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0632,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0633,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0634,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0635,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0636,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0637,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0638,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0639,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf063a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf063b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf063c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf063d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf063e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf063f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0640,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0641,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0642,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0643,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0644,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0645,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0646,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0647,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0648,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0649,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf064a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf064b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf064c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf064d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf064e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf064f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0650,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0651,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0652,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0653,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0654,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0655,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0656,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0657,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0658,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0659,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf065a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf065b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf065c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf065d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf065e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf065f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0660,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0661,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0662,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0663,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0664,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0665,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0666,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0667,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0668,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0669,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf066a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf066b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf066c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf066d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf066e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf066f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0670,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0671,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0672,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0673,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0674,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0675,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0676,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0677,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0678,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0679,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf067a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf067b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf067c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf067d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf067e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf067f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0680,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0681,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0682,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0683,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0684,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0685,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0686,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0687,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0688,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0689,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf068a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf068b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf068c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf068d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf068e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf068f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0690,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0691,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0692,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0693,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0694,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0695,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0696,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0697,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0698,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0699,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf069a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf069b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf069c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf069d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf069e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf069f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06a0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06a1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06a2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06a3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06a4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06a5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06a6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06a7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06a8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06a9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06aa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06ab,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06ac,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06ad,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06ae,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06af,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06b0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06b1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06b2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06b3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06b4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06b5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06b6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06b7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06b8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06b9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06ba,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06bb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06bc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06bd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06be,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06bf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06c0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06c1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06c2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06c3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06c4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06c5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06c6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06c7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06c8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06c9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06ca,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06cb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06cc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06cd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06ce,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06cf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06d0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06d1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06d2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06d3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06d4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06d5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06d6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06d7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06d8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06d9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06da,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06db,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06dc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06dd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06de,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06df,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06e0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06e1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06e2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06e3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06e4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06e5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06e6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06e7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06e8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06e9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06ea,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06eb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06ec,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06ed,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06ee,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06ef,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06f0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06f1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06f2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06f3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06f4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06f5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06f6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06f7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06f8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06f9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06fa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06fb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06fc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06fd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06fe,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf06ff,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0700,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0701,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0702,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0703,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0704,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0705,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0706,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0707,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0708,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0709,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf070a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf070b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf070c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf070d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf070e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf070f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0710,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0711,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0712,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0713,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0714,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0715,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0716,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0717,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0718,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0719,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf071a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf071b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf071c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf071d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf071e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf071f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0720,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0721,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0722,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0723,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0724,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0725,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0726,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0727,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0728,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0729,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf072a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf072b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf072c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf072d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf072e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf072f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0730,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0731,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0732,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0733,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0734,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0735,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0736,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0737,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0738,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0739,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf073a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf073b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf073c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf073d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf073e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf073f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0740,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0741,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0742,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0743,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0744,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0745,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0746,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0747,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0748,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0749,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf074a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf074b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf074c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf074d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf074e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf074f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0750,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0751,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0752,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0753,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0754,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0755,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0756,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0757,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0758,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0759,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf075a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf075b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf075c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf075d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf075e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf075f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0760,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0761,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0762,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0763,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0764,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0765,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0766,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0767,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0768,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0769,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf076a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf076b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf076c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf076d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf076e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf076f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0770,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0771,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0772,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0773,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0774,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0775,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0776,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0777,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0778,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0779,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf077a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf077b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf077c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf077d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf077e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf077f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0780,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0781,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0782,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0783,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0784,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0785,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0786,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0787,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0788,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0789,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf078a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf078b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf078c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf078d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf078e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf078f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0790,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0791,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0792,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0793,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0794,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0795,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0796,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0797,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0798,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0799,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf079a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf079b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf079c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf079d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf079e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf079f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07a0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07a1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07a2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07a3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07a4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07a5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07a6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07a7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07a8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07a9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07aa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07ab,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07ac,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07ad,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07ae,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07af,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07b0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07b1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07b2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07b3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07b4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07b5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07b6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07b7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07b8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07b9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07ba,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07bb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07bc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07bd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07be,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07bf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07c0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07c1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07c2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07c3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07c4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07c5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07c6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07c7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07c8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07c9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07ca,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07cb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07cc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07cd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07ce,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07cf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07d0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07d1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07d2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07d3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07d4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07d5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07d6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07d7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07d8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07d9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07da,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07db,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07dc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07dd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07de,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07df,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07e0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07e1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07e2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07e3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07e4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07e5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07e6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07e7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07e8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07e9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07ea,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07eb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07ec,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07ed,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07ee,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07ef,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07f0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07f1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07f2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07f3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07f4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07f5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07f6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07f7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07f8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07f9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07fa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07fb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07fc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07fd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07fe,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf07ff,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0800,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0801,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0802,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0803,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0804,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0805,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0806,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0807,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0808,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0809,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf080a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf080b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf080c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf080d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf080e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf080f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0810,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0811,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0812,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0813,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0814,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0815,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0816,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0817,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0818,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0819,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf081a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf081b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf081c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf081d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf081e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf081f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0820,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0821,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0822,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0823,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0824,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0825,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0826,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0827,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0828,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0829,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf082a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf082b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf082c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf082d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf082e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf082f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0830,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0831,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0832,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0833,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0834,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0835,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0836,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0837,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0838,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0839,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf083a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf083b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf083c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf083d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf083e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf083f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0840,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0841,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0842,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0843,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0844,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0845,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0846,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0847,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0848,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0849,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf084a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf084b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf084c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf084d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf084e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf084f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0850,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0851,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0852,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0853,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0854,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0855,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0856,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0857,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0858,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0859,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf085a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf085b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf085c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf085d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf085e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf085f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0860,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0861,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0862,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0863,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0864,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0865,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0866,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0867,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0868,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0869,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf086a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf086b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf086c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf086d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf086e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf086f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0870,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0871,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0872,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0873,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0874,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0875,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0876,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0877,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0878,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0879,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf087a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf087b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf087c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf087d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf087e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf087f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0880,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0881,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0882,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0883,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0884,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0885,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0886,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0887,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0888,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0889,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf088a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf088b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf088c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf088d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf088e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf088f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0890,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0891,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0892,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0893,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0894,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0895,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0896,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0897,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0898,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0899,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf089a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf089b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf089c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf089d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf089e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf089f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08a0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08a1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08a2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08a3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08a4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08a5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08a6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08a7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08a8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08a9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08aa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08ab,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08ac,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08ad,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08ae,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08af,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08b0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08b1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08b2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08b3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08b4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08b5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08b6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08b7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08b8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08b9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08ba,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08bb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08bc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08bd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08be,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08bf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08c0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08c1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08c2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08c3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08c4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08c5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08c6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08c7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08c8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08c9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08ca,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08cb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08cc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08cd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08ce,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08cf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08d0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08d1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08d2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08d3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08d4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08d5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08d6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08d7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08d8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08d9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08da,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08db,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08dc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08dd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08de,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08df,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08e0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08e1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08e2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08e3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08e4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08e5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08e6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08e7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08e8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08e9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08ea,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08eb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08ec,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08ed,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08ee,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08ef,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08f0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08f1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08f2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08f3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08f4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08f5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08f6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08f7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08f8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08f9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08fa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08fb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08fc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08fd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08fe,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf08ff,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0900,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0901,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0902,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0903,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0904,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0905,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0906,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0907,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0908,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0909,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf090a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf090b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf090c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf090d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf090e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf090f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0910,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0911,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0912,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0913,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0914,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0915,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0916,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0917,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0918,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0919,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf091a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf091b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf091c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf091d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf091e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf091f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0920,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0921,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0922,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0923,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0924,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0925,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0926,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0927,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0928,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0929,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf092a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf092b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf092c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf092d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf092e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf092f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0930,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0931,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0932,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0933,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0934,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0935,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0936,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0937,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0938,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0939,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf093a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf093b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf093c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf093d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf093e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf093f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0940,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0941,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0942,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0943,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0944,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0945,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0946,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0947,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0948,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0949,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf094a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf094b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf094c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf094d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf094e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf094f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0950,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0951,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0952,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0953,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0954,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0955,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0956,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0957,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0958,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0959,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf095a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf095b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf095c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf095d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf095e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf095f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0960,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0961,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0962,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0963,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0964,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0965,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0966,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0967,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0968,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0969,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf096a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf096b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf096c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf096d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf096e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf096f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0970,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0971,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0972,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0973,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0974,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0975,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0976,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0977,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0978,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0979,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf097a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf097b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf097c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf097d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf097e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf097f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0980,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0981,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0982,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0983,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0984,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0985,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0986,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0987,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0988,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0989,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf098a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf098b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf098c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf098d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf098e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf098f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0990,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0991,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0992,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0993,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0994,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0995,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0996,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0997,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0998,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0999,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf099a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf099b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf099c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf099d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf099e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf099f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09a0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09a1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09a2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09a3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09a4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09a5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09a6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09a7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09a8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09a9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09aa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09ab,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09ac,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09ad,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09ae,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09af,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09b0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09b1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09b2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09b3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09b4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09b5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09b6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09b7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09b8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09b9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09ba,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09bb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09bc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09bd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09be,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09bf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09c0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09c1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09c2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09c3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09c4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09c5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09c6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09c7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09c8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09c9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09ca,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09cb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09cc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09cd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09ce,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09cf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09d0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09d1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09d2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09d3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09d4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09d5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09d6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09d7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09d8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09d9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09da,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09db,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09dc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09dd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09de,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09df,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09e0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09e1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09e2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09e3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09e4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09e5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09e6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09e7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09e8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09e9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09ea,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09eb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09ec,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09ed,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09ee,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09ef,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09f0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09f1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09f2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09f3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09f4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09f5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09f6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09f7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09f8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09f9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09fa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09fb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09fc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09fd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09fe,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf09ff,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a00,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a01,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a02,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a03,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a04,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a05,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a06,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a07,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a08,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a09,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a0a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a0b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a0c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a0d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a0e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a0f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a10,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a11,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a12,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a13,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a14,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a15,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a16,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a17,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a18,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a19,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a1a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a1b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a1c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a1d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a1e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a1f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a20,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a21,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a22,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a23,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a24,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a25,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a26,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a27,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a28,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a29,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a2a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a2b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a2c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a2d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a2e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a2f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a30,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a31,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a32,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a33,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a34,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a35,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a36,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a37,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a38,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a39,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a3a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a3b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a3c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a3d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a3e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a3f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a40,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a41,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a42,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a43,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a44,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a45,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a46,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a47,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a48,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a49,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a4a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a4b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a4c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a4d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a4e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a4f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a50,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a51,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a52,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a53,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a54,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a55,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a56,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a57,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a58,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a59,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a5a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a5b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a5c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a5d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a5e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a5f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a60,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a61,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a62,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a63,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a64,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a65,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a66,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a67,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a68,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a69,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a6a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a6b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a6c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a6d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a6e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a6f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a70,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a71,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a72,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a73,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a74,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a75,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a76,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a77,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a78,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a79,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a7a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a7b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a7c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a7d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a7e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a7f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a80,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a81,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a82,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a83,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a84,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a85,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a86,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a87,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a88,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a89,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a8a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a8b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a8c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a8d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a8e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a8f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a90,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a91,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a92,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a93,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a94,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a95,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a96,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a97,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a98,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a99,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a9a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a9b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a9c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a9d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a9e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0a9f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0aa0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0aa1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0aa2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0aa3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0aa4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0aa5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0aa6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0aa7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0aa8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0aa9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0aaa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0aab,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0aac,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0aad,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0aae,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0aaf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ab0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ab1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ab2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ab3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ab4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ab5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ab6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ab7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ab8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ab9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0aba,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0abb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0abc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0abd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0abe,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0abf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ac0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ac1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ac2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ac3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ac4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ac5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ac6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ac7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ac8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ac9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0aca,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0acb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0acc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0acd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ace,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0acf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ad0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ad1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ad2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ad3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ad4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ad5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ad6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ad7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ad8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ad9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ada,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0adb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0adc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0add,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ade,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0adf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ae0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ae1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ae2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ae3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ae4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ae5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ae6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ae7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ae8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ae9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0aea,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0aeb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0aec,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0aed,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0aee,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0aef,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0af0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0af1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0af2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0af3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0af4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0af5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0af6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0af7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0af8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0af9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0afa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0afb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0afc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0afd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0afe,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0aff,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b00,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b01,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b02,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b03,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b04,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b05,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b06,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b07,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b08,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b09,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b0a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b0b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b0c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b0d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b0e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b0f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b10,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b11,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b12,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b13,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b14,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b15,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b16,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b17,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b18,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b19,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b1a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b1b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b1c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b1d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b1e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b1f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b20,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b21,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b22,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b23,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b24,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b25,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b26,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b27,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b28,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b29,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b2a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b2b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b2c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b2d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b2e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b2f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b30,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b31,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b32,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b33,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b34,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b35,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b36,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b37,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b38,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b39,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b3a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b3b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b3c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b3d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b3e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b3f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b40,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b41,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b42,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b43,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b44,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b45,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b46,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b47,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b48,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b49,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b4a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b4b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b4c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b4d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b4e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b4f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b50,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b51,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b52,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b53,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b54,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b55,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b56,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b57,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b58,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b59,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b5a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b5b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b5c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b5d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b5e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b5f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b60,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b61,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b62,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b63,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b64,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b65,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b66,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b67,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b68,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b69,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b6a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b6b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b6c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b6d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b6e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b6f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b70,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b71,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b72,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b73,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b74,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b75,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b76,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b77,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b78,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b79,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b7a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b7b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b7c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b7d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b7e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b7f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b80,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b81,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b82,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b83,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b84,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b85,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b86,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b87,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b88,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b89,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b8a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b8b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b8c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b8d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b8e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b8f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b90,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b91,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b92,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b93,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b94,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b95,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b96,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b97,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b98,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b99,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b9a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b9b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b9c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b9d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b9e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0b9f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ba0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ba1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ba2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ba3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ba4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ba5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ba6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ba7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ba8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ba9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0baa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bab,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bac,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bad,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bae,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0baf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bb0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bb1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bb2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bb3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bb4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bb5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bb6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bb7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bb8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bb9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bba,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bbb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bbc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bbd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bbe,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bbf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bc0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bc1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bc2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bc3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bc4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bc5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bc6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bc7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bc8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bc9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bca,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bcb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bcc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bcd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bce,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bcf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bd0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bd1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bd2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bd3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bd4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bd5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bd6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bd7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bd8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bd9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bda,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bdb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bdc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bdd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bde,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bdf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0be0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0be1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0be2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0be3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0be4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0be5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0be6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0be7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0be8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0be9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bea,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0beb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bec,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bed,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bee,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bef,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bf0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bf1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bf2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bf3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bf4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bf5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bf6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bf7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bf8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bf9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bfa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bfb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bfc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bfd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bfe,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0bff,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c00,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c01,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c02,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c03,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c04,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c05,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c06,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c07,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c08,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c09,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c0a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c0b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c0c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c0d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c0e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c0f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c10,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c11,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c12,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c13,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c14,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c15,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c16,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c17,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c18,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c19,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c1a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c1b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c1c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c1d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c1e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c1f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c20,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c21,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c22,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c23,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c24,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c25,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c26,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c27,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c28,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c29,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c2a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c2b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c2c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c2d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c2e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c2f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c30,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c31,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c32,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c33,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c34,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c35,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c36,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c37,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c38,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c39,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c3a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c3b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c3c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c3d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c3e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c3f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c40,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c41,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c42,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c43,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c44,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c45,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c46,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c47,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c48,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c49,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c4a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c4b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c4c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c4d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c4e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c4f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c50,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c51,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c52,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c53,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c54,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c55,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c56,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c57,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c58,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c59,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c5a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c5b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c5c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c5d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c5e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c5f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c60,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c61,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c62,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c63,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c64,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c65,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c66,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c67,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c68,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c69,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c6a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c6b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c6c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c6d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c6e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c6f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c70,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c71,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c72,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c73,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c74,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c75,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c76,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c77,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c78,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c79,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c7a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c7b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c7c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c7d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c7e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c7f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c80,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c81,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c82,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c83,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c84,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c85,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c86,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c87,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c88,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c89,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c8a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c8b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c8c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c8d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c8e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c8f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c90,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c91,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c92,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c93,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c94,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c95,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c96,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c97,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c98,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c99,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c9a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c9b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c9c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c9d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c9e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0c9f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ca0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ca1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ca2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ca3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ca4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ca5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ca6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ca7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ca8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ca9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0caa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cab,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cac,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cad,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cae,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0caf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cb0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cb1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cb2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cb3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cb4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cb5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cb6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cb7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cb8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cb9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cba,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cbb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cbc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cbd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cbe,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cbf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cc0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cc1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cc2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cc3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cc4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cc5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cc6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cc7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cc8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cc9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cca,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ccb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ccc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ccd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cce,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ccf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cd0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cd1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cd2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cd3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cd4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cd5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cd6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cd7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cd8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cd9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cda,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cdb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cdc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cdd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cde,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cdf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ce0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ce1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ce2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ce3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ce4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ce5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ce6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ce7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ce8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ce9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cea,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ceb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cec,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ced,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cee,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cef,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cf0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cf1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cf2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cf3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cf4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cf5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cf6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cf7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cf8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cf9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cfa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cfb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cfc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cfd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cfe,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0cff,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d00,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d01,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d02,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d03,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d04,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d05,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d06,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d07,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d08,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d09,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d0a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d0b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d0c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d0d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d0e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d0f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d10,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d11,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d12,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d13,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d14,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d15,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d16,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d17,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d18,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d19,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d1a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d1b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d1c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d1d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d1e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d1f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d20,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d21,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d22,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d23,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d24,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d25,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d26,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d27,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d28,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d29,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d2a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d2b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d2c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d2d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d2e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d2f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d30,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d31,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d32,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d33,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d34,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d35,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d36,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d37,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d38,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d39,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d3a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d3b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d3c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d3d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d3e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d3f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d40,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d41,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d42,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d43,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d44,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d45,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d46,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d47,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d48,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d49,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d4a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d4b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d4c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d4d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d4e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d4f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d50,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d51,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d52,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d53,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d54,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d55,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d56,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d57,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d58,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d59,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d5a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d5b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d5c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d5d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d5e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d5f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d60,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d61,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d62,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d63,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d64,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d65,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d66,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d67,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d68,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d69,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d6a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d6b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d6c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d6d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d6e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d6f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d70,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d71,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d72,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d73,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d74,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d75,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d76,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d77,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d78,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d79,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d7a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d7b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d7c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d7d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d7e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d7f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d80,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d81,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d82,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d83,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d84,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d85,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d86,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d87,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d88,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d89,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d8a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d8b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d8c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d8d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d8e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d8f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d90,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d91,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d92,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d93,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d94,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d95,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d96,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d97,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d98,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d99,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d9a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d9b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d9c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d9d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d9e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0d9f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0da0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0da1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0da2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0da3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0da4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0da5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0da6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0da7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0da8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0da9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0daa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0dab,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0dac,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0dad,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0dae,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0daf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0db0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0db1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0db2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0db3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0db4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0db5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0db6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0db7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0db8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0db9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0dba,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0dbb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0dbc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0dbd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0dbe,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0dbf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0dc0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0dc1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0dc2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0dc3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0dc4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0dc5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0dc6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0dc7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0dc8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0dc9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0dca,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0dcb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0dcc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0dcd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0dce,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0dcf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0dd0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0dd1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0dd2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0dd3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0dd4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0dd5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0dd6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0dd7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0dd8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0dd9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0dda,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ddb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ddc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ddd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0dde,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ddf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0de0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0de1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0de2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0de3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0de4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0de5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0de6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0de7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0de8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0de9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0dea,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0deb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0dec,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ded,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0dee,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0def,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0df0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0df1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0df2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0df3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0df4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0df5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0df6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0df7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0df8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0df9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0dfa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0dfb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0dfc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0dfd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0dfe,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0dff,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e00,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e01,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e02,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e03,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e04,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e05,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e06,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e07,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e08,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e09,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e0a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e0b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e0c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e0d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e0e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e0f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e10,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e11,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e12,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e13,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e14,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e15,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e16,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e17,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e18,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e19,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e1a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e1b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e1c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e1d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e1e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e1f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e20,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e21,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e22,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e23,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e24,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e25,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e26,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e27,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e28,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e29,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e2a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e2b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e2c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e2d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e2e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e2f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e30,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e31,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e32,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e33,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e34,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e35,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e36,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e37,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e38,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e39,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e3a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e3b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e3c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e3d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e3e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e3f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e40,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e41,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e42,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e43,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e44,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e45,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e46,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e47,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e48,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e49,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e4a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e4b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e4c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e4d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e4e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e4f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e50,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e51,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e52,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e53,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e54,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e55,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e56,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e57,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e58,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e59,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e5a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e5b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e5c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e5d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e5e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e5f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e60,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e61,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e62,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e63,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e64,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e65,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e66,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e67,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e68,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e69,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e6a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e6b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e6c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e6d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e6e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e6f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e70,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e71,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e72,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e73,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e74,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e75,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e76,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e77,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e78,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e79,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e7a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e7b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e7c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e7d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e7e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e7f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e80,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e81,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e82,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e83,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e84,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e85,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e86,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e87,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e88,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e89,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e8a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e8b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e8c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e8d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e8e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e8f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e90,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e91,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e92,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e93,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e94,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e95,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e96,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e97,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e98,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e99,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e9a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e9b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e9c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e9d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e9e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0e9f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ea0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ea1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ea2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ea3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ea4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ea5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ea6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ea7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ea8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ea9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0eaa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0eab,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0eac,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ead,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0eae,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0eaf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0eb0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0eb1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0eb2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0eb3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0eb4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0eb5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0eb6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0eb7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0eb8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0eb9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0eba,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ebb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ebc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ebd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ebe,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ebf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ec0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ec1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ec2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ec3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ec4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ec5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ec6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ec7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ec8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ec9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0eca,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ecb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ecc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ecd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ece,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ecf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ed0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ed1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ed2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ed3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ed4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ed5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ed6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ed7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ed8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ed9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0eda,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0edb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0edc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0edd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ede,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0edf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ee0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ee1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ee2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ee3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ee4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ee5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ee6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ee7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ee8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ee9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0eea,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0eeb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0eec,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0eed,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0eee,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0eef,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ef0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ef1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ef2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ef3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ef4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ef5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ef6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ef7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ef8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ef9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0efa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0efb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0efc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0efd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0efe,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0eff,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f00,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f01,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f02,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f03,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f04,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f05,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f06,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f07,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f08,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f09,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f0a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f0b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f0c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f0d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f0e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f0f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f10,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f11,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f12,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f13,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f14,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f15,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f16,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f17,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f18,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f19,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f1a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f1b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f1c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f1d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f1e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f1f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f20,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f21,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f22,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f23,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f24,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f25,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f26,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f27,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f28,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f29,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f2a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f2b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f2c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f2d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f2e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f2f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f30,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f31,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f32,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f33,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f34,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f35,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f36,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f37,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f38,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f39,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f3a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f3b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f3c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f3d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f3e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f3f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f40,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f41,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f42,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f43,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f44,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f45,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f46,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f47,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f48,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f49,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f4a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f4b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f4c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f4d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f4e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f4f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f50,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f51,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f52,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f53,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f54,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f55,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f56,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f57,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f58,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f59,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f5a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f5b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f5c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f5d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f5e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f5f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f60,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f61,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f62,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f63,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f64,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f65,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f66,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f67,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f68,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f69,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f6a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f6b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f6c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f6d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f6e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f6f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f70,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f71,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f72,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f73,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f74,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f75,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f76,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f77,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f78,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f79,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f7a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f7b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f7c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f7d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f7e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f7f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f80,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f81,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f82,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f83,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f84,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f85,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f86,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f87,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f88,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f89,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f8a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f8b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f8c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f8d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f8e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f8f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f90,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f91,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f92,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f93,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f94,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f95,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f96,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f97,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f98,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f99,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f9a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f9b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f9c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f9d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f9e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0f9f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fa0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fa1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fa2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fa3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fa4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fa5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fa6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fa7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fa8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fa9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0faa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fab,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fac,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fad,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fae,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0faf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fb0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fb1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fb2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fb3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fb4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fb5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fb6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fb7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fb8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fb9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fba,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fbb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fbc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fbd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fbe,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fbf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fc0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fc1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fc2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fc3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fc4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fc5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fc6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fc7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fc8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fc9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fca,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fcb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fcc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fcd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fce,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fcf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fd0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fd1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fd2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fd3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fd4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fd5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fd6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fd7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fd8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fd9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fda,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fdb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fdc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fdd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fde,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fdf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fe0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fe1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fe2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fe3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fe4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fe5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fe6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fe7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fe8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fe9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fea,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0feb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fec,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fed,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fee,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fef,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ff0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ff1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ff2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ff3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ff4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ff5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ff6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ff7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ff8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ff9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ffa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ffb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ffc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ffd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0ffe,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xf0fff,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+};
+
+
+
+
+
+
+static const unichar_data_internal __uni_char_data_ff000[]=
+{
+ { // char 0xff000,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff001,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff002,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff003,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff004,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff005,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff006,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff007,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff008,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff009,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff00a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff00b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff00c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff00d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff00e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff00f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff010,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff011,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff012,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff013,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff014,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff015,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff016,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff017,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff018,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff019,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff01a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff01b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff01c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff01d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff01e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff01f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff020,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff021,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff022,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff023,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff024,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff025,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff026,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff027,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff028,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff029,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff02a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff02b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff02c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff02d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff02e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff02f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff030,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff031,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff032,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff033,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff034,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff035,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff036,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff037,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff038,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff039,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff03a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff03b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff03c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff03d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff03e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff03f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff040,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff041,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff042,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff043,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff044,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff045,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff046,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff047,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff048,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff049,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff04a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff04b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff04c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff04d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff04e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff04f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff050,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff051,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff052,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff053,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff054,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff055,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff056,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff057,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff058,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff059,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff05a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff05b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff05c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff05d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff05e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff05f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff060,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff061,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff062,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff063,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff064,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff065,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff066,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff067,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff068,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff069,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff06a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff06b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff06c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff06d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff06e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff06f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff070,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff071,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff072,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff073,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff074,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff075,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff076,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff077,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff078,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff079,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff07a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff07b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff07c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff07d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff07e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff07f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff080,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff081,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff082,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff083,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff084,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff085,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff086,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff087,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff088,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff089,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff08a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff08b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff08c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff08d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff08e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff08f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff090,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff091,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff092,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff093,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff094,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff095,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff096,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff097,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff098,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff099,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff09a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff09b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff09c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff09d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff09e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff09f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0a0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0a1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0a2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0a3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0a4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0a5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0a6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0a7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0a8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0a9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0aa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0ab,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0ac,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0ad,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0ae,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0af,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0b0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0b1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0b2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0b3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0b4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0b5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0b6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0b7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0b8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0b9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0ba,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0bb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0bc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0bd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0be,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0bf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0c0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0c1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0c2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0c3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0c4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0c5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0c6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0c7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0c8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0c9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0ca,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0cb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0cc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0cd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0ce,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0cf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0d0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0d1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0d2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0d3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0d4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0d5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0d6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0d7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0d8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0d9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0da,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0db,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0dc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0dd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0de,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0df,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0e0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0e1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0e2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0e3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0e4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0e5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0e6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0e7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0e8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0e9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0ea,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0eb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0ec,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0ed,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0ee,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0ef,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0f0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0f1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0f2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0f3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0f4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0f5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0f6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0f7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0f8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0f9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0fa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0fb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0fc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0fd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0fe,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff0ff,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff100,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff101,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff102,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff103,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff104,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff105,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff106,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff107,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff108,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff109,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff10a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff10b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff10c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff10d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff10e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff10f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff110,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff111,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff112,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff113,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff114,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff115,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff116,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff117,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff118,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff119,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff11a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff11b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff11c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff11d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff11e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff11f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff120,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff121,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff122,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff123,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff124,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff125,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff126,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff127,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff128,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff129,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff12a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff12b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff12c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff12d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff12e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff12f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff130,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff131,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff132,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff133,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff134,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff135,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff136,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff137,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff138,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff139,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff13a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff13b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff13c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff13d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff13e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff13f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff140,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff141,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff142,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff143,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff144,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff145,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff146,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff147,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff148,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff149,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff14a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff14b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff14c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff14d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff14e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff14f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff150,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff151,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff152,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff153,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff154,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff155,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff156,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff157,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff158,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff159,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff15a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff15b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff15c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff15d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff15e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff15f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff160,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff161,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff162,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff163,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff164,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff165,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff166,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff167,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff168,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff169,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff16a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff16b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff16c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff16d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff16e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff16f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff170,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff171,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff172,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff173,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff174,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff175,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff176,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff177,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff178,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff179,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff17a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff17b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff17c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff17d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff17e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff17f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff180,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff181,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff182,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff183,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff184,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff185,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff186,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff187,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff188,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff189,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff18a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff18b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff18c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff18d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff18e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff18f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff190,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff191,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff192,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff193,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff194,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff195,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff196,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff197,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff198,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff199,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff19a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff19b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff19c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff19d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff19e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff19f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1a0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1a1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1a2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1a3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1a4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1a5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1a6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1a7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1a8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1a9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1aa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1ab,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1ac,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1ad,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1ae,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1af,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1b0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1b1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1b2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1b3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1b4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1b5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1b6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1b7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1b8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1b9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1ba,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1bb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1bc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1bd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1be,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1bf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1c0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1c1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1c2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1c3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1c4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1c5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1c6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1c7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1c8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1c9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1ca,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1cb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1cc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1cd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1ce,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1cf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1d0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1d1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1d2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1d3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1d4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1d5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1d6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1d7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1d8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1d9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1da,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1db,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1dc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1dd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1de,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1df,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1e0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1e1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1e2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1e3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1e4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1e5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1e6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1e7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1e8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1e9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1ea,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1eb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1ec,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1ed,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1ee,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1ef,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1f0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1f1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1f2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1f3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1f4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1f5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1f6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1f7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1f8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1f9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1fa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1fb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1fc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1fd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1fe,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff1ff,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff200,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff201,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff202,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff203,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff204,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff205,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff206,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff207,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff208,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff209,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff20a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff20b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff20c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff20d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff20e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff20f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff210,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff211,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff212,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff213,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff214,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff215,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff216,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff217,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff218,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff219,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff21a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff21b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff21c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff21d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff21e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff21f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff220,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff221,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff222,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff223,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff224,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff225,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff226,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff227,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff228,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff229,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff22a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff22b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff22c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff22d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff22e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff22f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff230,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff231,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff232,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff233,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff234,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff235,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff236,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff237,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff238,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff239,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff23a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff23b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff23c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff23d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff23e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff23f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff240,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff241,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff242,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff243,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff244,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff245,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff246,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff247,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff248,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff249,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff24a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff24b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff24c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff24d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff24e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff24f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff250,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff251,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff252,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff253,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff254,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff255,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff256,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff257,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff258,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff259,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff25a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff25b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff25c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff25d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff25e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff25f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff260,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff261,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff262,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff263,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff264,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff265,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff266,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff267,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff268,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff269,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff26a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff26b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff26c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff26d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff26e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff26f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff270,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff271,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff272,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff273,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff274,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff275,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff276,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff277,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff278,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff279,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff27a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff27b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff27c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff27d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff27e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff27f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff280,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff281,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff282,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff283,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff284,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff285,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff286,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff287,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff288,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff289,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff28a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff28b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff28c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff28d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff28e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff28f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff290,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff291,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff292,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff293,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff294,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff295,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff296,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff297,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff298,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff299,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff29a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff29b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff29c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff29d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff29e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff29f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2a0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2a1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2a2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2a3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2a4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2a5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2a6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2a7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2a8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2a9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2aa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2ab,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2ac,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2ad,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2ae,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2af,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2b0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2b1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2b2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2b3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2b4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2b5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2b6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2b7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2b8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2b9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2ba,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2bb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2bc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2bd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2be,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2bf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2c0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2c1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2c2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2c3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2c4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2c5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2c6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2c7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2c8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2c9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2ca,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2cb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2cc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2cd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2ce,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2cf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2d0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2d1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2d2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2d3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2d4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2d5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2d6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2d7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2d8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2d9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2da,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2db,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2dc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2dd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2de,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2df,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2e0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2e1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2e2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2e3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2e4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2e5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2e6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2e7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2e8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2e9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2ea,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2eb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2ec,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2ed,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2ee,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2ef,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2f0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2f1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2f2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2f3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2f4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2f5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2f6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2f7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2f8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2f9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2fa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2fb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2fc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2fd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2fe,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff2ff,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff300,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff301,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff302,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff303,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff304,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff305,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff306,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff307,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff308,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff309,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff30a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff30b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff30c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff30d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff30e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff30f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff310,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff311,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff312,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff313,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff314,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff315,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff316,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff317,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff318,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff319,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff31a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff31b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff31c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff31d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff31e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff31f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff320,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff321,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff322,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff323,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff324,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff325,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff326,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff327,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff328,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff329,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff32a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff32b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff32c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff32d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff32e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff32f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff330,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff331,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff332,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff333,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff334,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff335,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff336,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff337,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff338,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff339,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff33a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff33b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff33c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff33d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff33e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff33f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff340,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff341,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff342,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff343,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff344,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff345,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff346,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff347,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff348,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff349,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff34a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff34b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff34c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff34d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff34e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff34f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff350,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff351,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff352,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff353,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff354,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff355,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff356,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff357,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff358,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff359,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff35a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff35b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff35c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff35d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff35e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff35f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff360,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff361,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff362,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff363,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff364,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff365,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff366,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff367,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff368,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff369,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff36a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff36b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff36c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff36d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff36e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff36f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff370,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff371,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff372,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff373,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff374,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff375,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff376,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff377,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff378,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff379,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff37a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff37b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff37c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff37d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff37e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff37f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff380,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff381,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff382,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff383,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff384,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff385,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff386,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff387,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff388,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff389,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff38a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff38b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff38c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff38d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff38e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff38f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff390,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff391,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff392,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff393,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff394,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff395,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff396,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff397,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff398,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff399,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff39a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff39b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff39c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff39d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff39e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff39f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3a0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3a1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3a2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3a3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3a4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3a5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3a6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3a7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3a8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3a9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3aa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3ab,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3ac,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3ad,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3ae,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3af,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3b0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3b1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3b2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3b3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3b4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3b5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3b6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3b7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3b8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3b9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3ba,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3bb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3bc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3bd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3be,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3bf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3c0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3c1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3c2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3c3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3c4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3c5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3c6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3c7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3c8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3c9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3ca,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3cb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3cc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3cd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3ce,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3cf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3d0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3d1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3d2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3d3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3d4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3d5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3d6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3d7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3d8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3d9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3da,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3db,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3dc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3dd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3de,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3df,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3e0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3e1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3e2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3e3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3e4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3e5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3e6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3e7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3e8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3e9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3ea,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3eb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3ec,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3ed,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3ee,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3ef,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3f0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3f1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3f2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3f3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3f4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3f5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3f6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3f7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3f8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3f9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3fa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3fb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3fc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3fd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3fe,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff3ff,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff400,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff401,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff402,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff403,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff404,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff405,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff406,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff407,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff408,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff409,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff40a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff40b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff40c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff40d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff40e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff40f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff410,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff411,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff412,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff413,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff414,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff415,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff416,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff417,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff418,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff419,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff41a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff41b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff41c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff41d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff41e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff41f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff420,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff421,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff422,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff423,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff424,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff425,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff426,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff427,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff428,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff429,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff42a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff42b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff42c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff42d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff42e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff42f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff430,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff431,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff432,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff433,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff434,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff435,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff436,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff437,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff438,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff439,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff43a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff43b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff43c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff43d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff43e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff43f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff440,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff441,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff442,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff443,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff444,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff445,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff446,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff447,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff448,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff449,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff44a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff44b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff44c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff44d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff44e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff44f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff450,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff451,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff452,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff453,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff454,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff455,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff456,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff457,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff458,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff459,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff45a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff45b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff45c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff45d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff45e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff45f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff460,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff461,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff462,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff463,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff464,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff465,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff466,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff467,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff468,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff469,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff46a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff46b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff46c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff46d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff46e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff46f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff470,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff471,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff472,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff473,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff474,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff475,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff476,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff477,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff478,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff479,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff47a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff47b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff47c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff47d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff47e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff47f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff480,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff481,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff482,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff483,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff484,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff485,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff486,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff487,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff488,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff489,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff48a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff48b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff48c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff48d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff48e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff48f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff490,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff491,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff492,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff493,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff494,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff495,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff496,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff497,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff498,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff499,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff49a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff49b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff49c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff49d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff49e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff49f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4a0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4a1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4a2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4a3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4a4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4a5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4a6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4a7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4a8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4a9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4aa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4ab,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4ac,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4ad,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4ae,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4af,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4b0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4b1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4b2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4b3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4b4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4b5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4b6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4b7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4b8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4b9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4ba,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4bb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4bc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4bd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4be,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4bf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4c0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4c1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4c2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4c3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4c4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4c5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4c6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4c7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4c8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4c9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4ca,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4cb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4cc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4cd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4ce,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4cf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4d0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4d1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4d2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4d3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4d4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4d5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4d6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4d7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4d8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4d9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4da,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4db,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4dc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4dd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4de,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4df,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4e0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4e1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4e2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4e3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4e4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4e5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4e6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4e7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4e8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4e9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4ea,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4eb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4ec,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4ed,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4ee,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4ef,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4f0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4f1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4f2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4f3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4f4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4f5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4f6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4f7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4f8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4f9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4fa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4fb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4fc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4fd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4fe,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff4ff,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff500,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff501,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff502,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff503,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff504,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff505,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff506,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff507,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff508,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff509,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff50a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff50b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff50c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff50d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff50e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff50f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff510,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff511,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff512,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff513,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff514,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff515,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff516,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff517,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff518,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff519,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff51a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff51b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff51c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff51d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff51e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff51f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff520,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff521,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff522,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff523,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff524,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff525,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff526,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff527,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff528,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff529,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff52a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff52b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff52c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff52d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff52e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff52f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff530,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff531,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff532,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff533,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff534,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff535,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff536,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff537,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff538,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff539,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff53a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff53b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff53c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff53d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff53e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff53f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff540,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff541,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff542,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff543,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff544,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff545,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff546,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff547,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff548,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff549,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff54a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff54b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff54c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff54d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff54e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff54f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff550,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff551,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff552,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff553,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff554,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff555,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff556,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff557,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff558,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff559,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff55a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff55b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff55c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff55d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff55e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff55f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff560,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff561,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff562,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff563,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff564,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff565,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff566,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff567,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff568,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff569,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff56a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff56b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff56c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff56d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff56e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff56f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff570,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff571,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff572,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff573,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff574,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff575,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff576,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff577,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff578,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff579,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff57a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff57b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff57c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff57d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff57e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff57f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff580,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff581,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff582,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff583,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff584,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff585,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff586,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff587,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff588,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff589,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff58a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff58b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff58c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff58d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff58e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff58f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff590,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff591,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff592,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff593,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff594,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff595,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff596,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff597,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff598,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff599,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff59a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff59b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff59c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff59d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff59e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff59f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5a0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5a1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5a2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5a3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5a4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5a5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5a6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5a7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5a8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5a9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5aa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5ab,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5ac,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5ad,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5ae,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5af,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5b0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5b1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5b2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5b3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5b4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5b5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5b6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5b7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5b8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5b9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5ba,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5bb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5bc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5bd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5be,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5bf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5c0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5c1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5c2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5c3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5c4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5c5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5c6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5c7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5c8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5c9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5ca,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5cb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5cc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5cd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5ce,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5cf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5d0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5d1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5d2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5d3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5d4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5d5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5d6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5d7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5d8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5d9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5da,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5db,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5dc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5dd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5de,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5df,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5e0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5e1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5e2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5e3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5e4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5e5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5e6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5e7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5e8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5e9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5ea,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5eb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5ec,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5ed,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5ee,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5ef,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5f0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5f1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5f2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5f3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5f4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5f5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5f6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5f7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5f8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5f9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5fa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5fb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5fc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5fd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5fe,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff5ff,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff600,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff601,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff602,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff603,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff604,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff605,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff606,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff607,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff608,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff609,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff60a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff60b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff60c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff60d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff60e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff60f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff610,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff611,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff612,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff613,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff614,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff615,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff616,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff617,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff618,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff619,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff61a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff61b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff61c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff61d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff61e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff61f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff620,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff621,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff622,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff623,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff624,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff625,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff626,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff627,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff628,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff629,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff62a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff62b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff62c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff62d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff62e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff62f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff630,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff631,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff632,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff633,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff634,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff635,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff636,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff637,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff638,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff639,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff63a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff63b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff63c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff63d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff63e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff63f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff640,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff641,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff642,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff643,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff644,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff645,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff646,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff647,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff648,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff649,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff64a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff64b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff64c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff64d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff64e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff64f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff650,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff651,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff652,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff653,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff654,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff655,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff656,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff657,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff658,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff659,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff65a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff65b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff65c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff65d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff65e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff65f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff660,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff661,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff662,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff663,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff664,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff665,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff666,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff667,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff668,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff669,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff66a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff66b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff66c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff66d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff66e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff66f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff670,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff671,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff672,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff673,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff674,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff675,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff676,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff677,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff678,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff679,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff67a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff67b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff67c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff67d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff67e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff67f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff680,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff681,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff682,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff683,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff684,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff685,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff686,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff687,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff688,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff689,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff68a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff68b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff68c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff68d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff68e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff68f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff690,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff691,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff692,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff693,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff694,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff695,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff696,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff697,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff698,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff699,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff69a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff69b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff69c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff69d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff69e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff69f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6a0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6a1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6a2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6a3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6a4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6a5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6a6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6a7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6a8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6a9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6aa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6ab,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6ac,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6ad,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6ae,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6af,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6b0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6b1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6b2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6b3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6b4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6b5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6b6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6b7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6b8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6b9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6ba,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6bb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6bc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6bd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6be,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6bf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6c0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6c1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6c2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6c3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6c4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6c5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6c6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6c7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6c8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6c9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6ca,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6cb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6cc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6cd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6ce,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6cf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6d0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6d1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6d2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6d3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6d4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6d5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6d6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6d7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6d8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6d9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6da,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6db,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6dc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6dd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6de,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6df,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6e0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6e1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6e2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6e3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6e4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6e5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6e6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6e7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6e8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6e9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6ea,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6eb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6ec,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6ed,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6ee,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6ef,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6f0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6f1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6f2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6f3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6f4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6f5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6f6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6f7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6f8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6f9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6fa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6fb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6fc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6fd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6fe,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff6ff,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff700,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff701,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff702,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff703,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff704,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff705,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff706,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff707,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff708,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff709,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff70a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff70b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff70c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff70d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff70e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff70f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff710,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff711,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff712,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff713,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff714,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff715,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff716,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff717,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff718,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff719,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff71a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff71b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff71c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff71d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff71e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff71f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff720,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff721,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff722,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff723,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff724,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff725,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff726,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff727,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff728,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff729,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff72a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff72b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff72c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff72d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff72e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff72f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff730,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff731,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff732,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff733,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff734,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff735,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff736,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff737,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff738,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff739,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff73a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff73b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff73c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff73d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff73e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff73f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff740,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff741,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff742,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff743,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff744,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff745,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff746,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff747,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff748,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff749,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff74a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff74b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff74c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff74d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff74e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff74f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff750,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff751,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff752,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff753,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff754,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff755,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff756,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff757,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff758,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff759,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff75a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff75b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff75c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff75d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff75e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff75f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff760,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff761,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff762,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff763,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff764,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff765,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff766,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff767,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff768,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff769,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff76a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff76b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff76c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff76d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff76e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff76f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff770,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff771,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff772,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff773,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff774,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff775,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff776,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff777,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff778,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff779,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff77a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff77b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff77c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff77d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff77e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff77f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff780,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff781,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff782,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff783,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff784,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff785,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff786,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff787,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff788,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff789,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff78a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff78b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff78c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff78d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff78e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff78f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff790,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff791,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff792,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff793,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff794,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff795,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff796,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff797,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff798,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff799,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff79a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff79b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff79c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff79d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff79e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff79f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7a0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7a1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7a2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7a3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7a4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7a5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7a6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7a7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7a8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7a9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7aa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7ab,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7ac,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7ad,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7ae,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7af,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7b0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7b1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7b2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7b3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7b4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7b5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7b6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7b7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7b8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7b9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7ba,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7bb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7bc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7bd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7be,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7bf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7c0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7c1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7c2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7c3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7c4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7c5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7c6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7c7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7c8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7c9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7ca,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7cb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7cc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7cd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7ce,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7cf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7d0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7d1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7d2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7d3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7d4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7d5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7d6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7d7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7d8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7d9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7da,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7db,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7dc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7dd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7de,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7df,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7e0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7e1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7e2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7e3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7e4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7e5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7e6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7e7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7e8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7e9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7ea,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7eb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7ec,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7ed,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7ee,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7ef,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7f0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7f1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7f2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7f3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7f4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7f5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7f6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7f7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7f8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7f9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7fa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7fb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7fc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7fd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7fe,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff7ff,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff800,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff801,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff802,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff803,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff804,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff805,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff806,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff807,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff808,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff809,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff80a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff80b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff80c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff80d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff80e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff80f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff810,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff811,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff812,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff813,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff814,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff815,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff816,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff817,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff818,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff819,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff81a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff81b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff81c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff81d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff81e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff81f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff820,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff821,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff822,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff823,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff824,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff825,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff826,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff827,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff828,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff829,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff82a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff82b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff82c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff82d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff82e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff82f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff830,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff831,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff832,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff833,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff834,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff835,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff836,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff837,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff838,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff839,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff83a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff83b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff83c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff83d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff83e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff83f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff840,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff841,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff842,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff843,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff844,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff845,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff846,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff847,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff848,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff849,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff84a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff84b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff84c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff84d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff84e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff84f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff850,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff851,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff852,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff853,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff854,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff855,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff856,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff857,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff858,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff859,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff85a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff85b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff85c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff85d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff85e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff85f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff860,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff861,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff862,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff863,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff864,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff865,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff866,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff867,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff868,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff869,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff86a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff86b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff86c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff86d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff86e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff86f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff870,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff871,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff872,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff873,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff874,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff875,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff876,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff877,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff878,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff879,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff87a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff87b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff87c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff87d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff87e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff87f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff880,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff881,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff882,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff883,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff884,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff885,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff886,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff887,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff888,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff889,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff88a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff88b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff88c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff88d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff88e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff88f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff890,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff891,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff892,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff893,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff894,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff895,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff896,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff897,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff898,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff899,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff89a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff89b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff89c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff89d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff89e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff89f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8a0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8a1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8a2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8a3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8a4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8a5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8a6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8a7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8a8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8a9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8aa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8ab,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8ac,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8ad,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8ae,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8af,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8b0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8b1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8b2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8b3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8b4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8b5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8b6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8b7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8b8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8b9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8ba,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8bb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8bc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8bd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8be,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8bf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8c0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8c1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8c2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8c3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8c4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8c5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8c6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8c7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8c8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8c9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8ca,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8cb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8cc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8cd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8ce,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8cf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8d0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8d1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8d2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8d3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8d4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8d5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8d6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8d7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8d8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8d9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8da,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8db,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8dc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8dd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8de,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8df,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8e0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8e1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8e2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8e3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8e4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8e5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8e6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8e7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8e8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8e9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8ea,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8eb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8ec,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8ed,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8ee,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8ef,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8f0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8f1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8f2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8f3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8f4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8f5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8f6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8f7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8f8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8f9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8fa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8fb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8fc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8fd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8fe,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff8ff,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff900,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff901,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff902,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff903,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff904,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff905,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff906,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff907,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff908,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff909,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff90a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff90b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff90c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff90d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff90e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff90f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff910,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff911,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff912,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff913,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff914,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff915,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff916,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff917,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff918,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff919,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff91a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff91b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff91c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff91d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff91e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff91f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff920,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff921,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff922,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff923,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff924,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff925,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff926,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff927,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff928,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff929,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff92a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff92b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff92c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff92d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff92e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff92f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff930,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff931,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff932,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff933,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff934,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff935,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff936,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff937,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff938,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff939,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff93a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff93b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff93c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff93d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff93e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff93f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff940,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff941,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff942,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff943,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff944,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff945,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff946,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff947,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff948,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff949,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff94a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff94b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff94c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff94d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff94e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff94f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff950,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff951,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff952,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff953,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff954,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff955,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff956,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff957,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff958,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff959,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff95a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff95b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff95c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff95d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff95e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff95f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff960,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff961,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff962,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff963,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff964,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff965,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff966,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff967,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff968,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff969,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff96a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff96b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff96c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff96d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff96e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff96f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff970,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff971,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff972,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff973,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff974,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff975,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff976,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff977,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff978,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff979,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff97a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff97b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff97c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff97d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff97e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff97f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff980,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff981,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff982,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff983,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff984,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff985,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff986,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff987,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff988,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff989,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff98a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff98b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff98c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff98d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff98e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff98f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff990,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff991,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff992,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff993,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff994,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff995,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff996,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff997,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff998,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff999,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff99a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff99b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff99c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff99d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff99e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff99f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9a0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9a1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9a2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9a3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9a4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9a5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9a6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9a7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9a8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9a9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9aa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9ab,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9ac,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9ad,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9ae,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9af,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9b0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9b1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9b2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9b3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9b4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9b5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9b6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9b7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9b8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9b9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9ba,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9bb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9bc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9bd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9be,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9bf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9c0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9c1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9c2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9c3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9c4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9c5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9c6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9c7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9c8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9c9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9ca,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9cb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9cc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9cd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9ce,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9cf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9d0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9d1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9d2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9d3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9d4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9d5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9d6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9d7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9d8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9d9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9da,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9db,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9dc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9dd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9de,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9df,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9e0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9e1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9e2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9e3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9e4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9e5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9e6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9e7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9e8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9e9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9ea,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9eb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9ec,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9ed,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9ee,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9ef,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9f0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9f1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9f2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9f3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9f4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9f5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9f6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9f7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9f8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9f9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9fa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9fb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9fc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9fd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9fe,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xff9ff,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa00,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa01,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa02,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa03,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa04,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa05,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa06,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa07,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa08,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa09,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa0a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa0b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa0c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa0d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa0e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa0f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa10,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa11,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa12,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa13,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa14,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa15,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa16,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa17,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa18,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa19,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa1a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa1b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa1c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa1d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa1e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa1f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa20,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa21,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa22,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa23,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa24,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa25,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa26,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa27,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa28,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa29,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa2a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa2b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa2c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa2d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa2e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa2f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa30,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa31,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa32,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa33,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa34,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa35,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa36,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa37,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa38,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa39,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa3a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa3b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa3c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa3d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa3e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa3f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa40,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa41,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa42,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa43,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa44,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa45,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa46,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa47,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa48,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa49,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa4a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa4b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa4c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa4d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa4e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa4f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa50,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa51,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa52,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa53,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa54,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa55,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa56,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa57,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa58,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa59,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa5a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa5b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa5c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa5d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa5e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa5f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa60,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa61,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa62,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa63,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa64,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa65,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa66,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa67,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa68,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa69,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa6a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa6b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa6c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa6d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa6e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa6f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa70,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa71,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa72,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa73,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa74,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa75,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa76,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa77,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa78,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa79,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa7a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa7b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa7c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa7d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa7e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa7f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa80,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa81,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa82,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa83,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa84,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa85,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa86,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa87,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa88,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa89,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa8a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa8b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa8c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa8d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa8e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa8f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa90,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa91,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa92,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa93,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa94,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa95,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa96,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa97,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa98,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa99,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa9a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa9b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa9c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa9d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa9e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffa9f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffaa0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffaa1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffaa2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffaa3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffaa4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffaa5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffaa6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffaa7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffaa8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffaa9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffaaa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffaab,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffaac,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffaad,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffaae,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffaaf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffab0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffab1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffab2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffab3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffab4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffab5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffab6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffab7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffab8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffab9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffaba,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffabb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffabc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffabd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffabe,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffabf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffac0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffac1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffac2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffac3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffac4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffac5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffac6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffac7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffac8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffac9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffaca,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffacb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffacc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffacd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfface,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffacf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffad0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffad1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffad2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffad3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffad4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffad5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffad6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffad7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffad8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffad9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffada,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffadb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffadc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffadd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffade,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffadf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffae0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffae1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffae2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffae3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffae4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffae5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffae6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffae7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffae8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffae9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffaea,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffaeb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffaec,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffaed,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffaee,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffaef,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffaf0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffaf1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffaf2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffaf3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffaf4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffaf5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffaf6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffaf7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffaf8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffaf9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffafa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffafb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffafc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffafd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffafe,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffaff,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb00,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb01,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb02,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb03,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb04,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb05,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb06,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb07,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb08,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb09,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb0a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb0b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb0c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb0d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb0e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb0f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb10,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb11,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb12,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb13,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb14,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb15,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb16,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb17,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb18,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb19,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb1a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb1b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb1c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb1d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb1e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb1f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb20,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb21,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb22,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb23,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb24,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb25,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb26,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb27,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb28,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb29,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb2a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb2b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb2c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb2d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb2e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb2f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb30,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb31,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb32,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb33,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb34,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb35,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb36,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb37,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb38,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb39,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb3a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb3b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb3c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb3d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb3e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb3f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb40,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb41,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb42,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb43,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb44,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb45,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb46,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb47,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb48,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb49,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb4a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb4b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb4c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb4d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb4e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb4f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb50,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb51,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb52,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb53,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb54,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb55,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb56,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb57,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb58,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb59,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb5a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb5b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb5c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb5d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb5e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb5f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb60,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb61,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb62,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb63,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb64,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb65,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb66,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb67,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb68,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb69,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb6a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb6b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb6c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb6d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb6e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb6f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb70,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb71,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb72,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb73,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb74,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb75,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb76,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb77,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb78,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb79,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb7a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb7b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb7c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb7d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb7e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb7f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb80,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb81,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb82,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb83,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb84,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb85,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb86,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb87,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb88,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb89,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb8a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb8b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb8c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb8d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb8e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb8f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb90,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb91,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb92,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb93,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb94,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb95,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb96,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb97,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb98,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb99,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb9a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb9b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb9c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb9d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb9e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffb9f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffba0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffba1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffba2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffba3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffba4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffba5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffba6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffba7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffba8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffba9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbaa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbab,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbac,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbad,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbae,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbaf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbb0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbb1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbb2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbb3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbb4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbb5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbb6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbb7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbb8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbb9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbba,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbbb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbbc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbbd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbbe,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbbf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbc0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbc1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbc2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbc3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbc4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbc5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbc6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbc7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbc8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbc9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbca,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbcb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbcc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbcd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbce,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbcf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbd0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbd1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbd2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbd3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbd4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbd5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbd6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbd7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbd8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbd9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbda,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbdb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbdc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbdd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbde,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbdf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbe0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbe1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbe2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbe3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbe4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbe5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbe6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbe7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbe8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbe9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbea,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbeb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbec,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbed,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbee,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbef,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbf0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbf1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbf2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbf3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbf4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbf5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbf6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbf7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbf8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbf9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbfa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbfb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbfc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbfd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbfe,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffbff,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc00,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc01,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc02,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc03,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc04,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc05,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc06,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc07,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc08,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc09,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc0a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc0b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc0c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc0d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc0e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc0f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc10,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc11,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc12,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc13,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc14,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc15,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc16,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc17,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc18,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc19,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc1a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc1b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc1c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc1d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc1e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc1f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc20,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc21,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc22,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc23,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc24,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc25,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc26,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc27,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc28,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc29,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc2a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc2b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc2c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc2d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc2e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc2f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc30,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc31,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc32,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc33,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc34,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc35,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc36,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc37,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc38,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc39,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc3a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc3b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc3c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc3d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc3e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc3f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc40,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc41,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc42,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc43,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc44,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc45,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc46,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc47,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc48,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc49,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc4a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc4b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc4c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc4d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc4e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc4f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc50,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc51,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc52,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc53,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc54,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc55,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc56,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc57,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc58,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc59,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc5a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc5b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc5c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc5d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc5e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc5f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc60,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc61,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc62,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc63,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc64,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc65,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc66,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc67,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc68,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc69,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc6a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc6b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc6c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc6d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc6e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc6f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc70,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc71,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc72,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc73,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc74,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc75,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc76,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc77,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc78,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc79,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc7a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc7b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc7c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc7d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc7e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc7f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc80,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc81,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc82,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc83,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc84,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc85,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc86,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc87,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc88,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc89,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc8a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc8b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc8c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc8d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc8e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc8f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc90,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc91,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc92,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc93,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc94,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc95,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc96,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc97,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc98,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc99,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc9a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc9b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc9c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc9d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc9e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffc9f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffca0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffca1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffca2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffca3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffca4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffca5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffca6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffca7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffca8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffca9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcaa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcab,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcac,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcad,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcae,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcaf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcb0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcb1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcb2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcb3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcb4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcb5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcb6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcb7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcb8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcb9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcba,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcbb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcbc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcbd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcbe,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcbf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcc0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcc1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcc2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcc3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcc4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcc5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcc6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcc7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcc8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcc9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcca,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffccb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffccc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffccd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcce,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffccf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcd0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcd1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcd2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcd3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcd4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcd5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcd6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcd7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcd8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcd9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcda,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcdb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcdc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcdd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcde,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcdf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffce0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffce1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffce2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffce3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffce4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffce5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffce6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffce7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffce8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffce9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcea,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffceb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcec,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffced,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcee,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcef,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcf0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcf1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcf2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcf3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcf4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcf5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcf6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcf7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcf8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcf9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcfa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcfb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcfc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcfd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcfe,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffcff,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd00,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd01,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd02,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd03,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd04,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd05,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd06,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd07,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd08,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd09,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd0a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd0b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd0c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd0d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd0e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd0f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd10,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd11,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd12,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd13,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd14,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd15,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd16,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd17,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd18,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd19,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd1a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd1b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd1c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd1d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd1e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd1f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd20,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd21,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd22,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd23,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd24,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd25,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd26,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd27,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd28,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd29,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd2a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd2b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd2c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd2d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd2e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd2f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd30,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd31,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd32,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd33,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd34,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd35,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd36,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd37,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd38,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd39,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd3a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd3b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd3c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd3d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd3e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd3f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd40,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd41,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd42,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd43,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd44,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd45,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd46,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd47,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd48,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd49,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd4a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd4b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd4c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd4d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd4e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd4f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd50,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd51,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd52,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd53,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd54,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd55,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd56,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd57,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd58,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd59,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd5a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd5b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd5c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd5d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd5e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd5f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd60,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd61,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd62,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd63,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd64,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd65,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd66,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd67,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd68,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd69,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd6a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd6b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd6c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd6d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd6e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd6f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd70,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd71,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd72,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd73,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd74,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd75,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd76,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd77,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd78,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd79,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd7a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd7b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd7c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd7d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd7e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd7f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd80,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd81,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd82,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd83,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd84,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd85,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd86,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd87,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd88,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd89,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd8a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd8b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd8c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd8d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd8e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd8f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd90,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd91,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd92,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd93,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd94,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd95,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd96,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd97,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd98,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd99,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd9a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd9b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd9c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd9d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd9e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffd9f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffda0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffda1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffda2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffda3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffda4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffda5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffda6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffda7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffda8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffda9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdaa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdab,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdac,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdad,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdae,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdaf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdb0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdb1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdb2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdb3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdb4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdb5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdb6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdb7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdb8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdb9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdba,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdbb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdbc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdbd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdbe,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdbf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdc0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdc1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdc2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdc3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdc4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdc5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdc6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdc7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdc8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdc9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdca,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdcb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdcc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdcd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdce,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdcf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdd0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdd1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdd2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdd3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdd4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdd5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdd6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdd7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdd8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdd9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdda,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffddb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffddc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffddd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdde,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffddf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffde0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffde1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffde2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffde3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffde4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffde5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffde6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffde7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffde8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffde9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdea,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdeb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdec,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffded,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdee,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdef,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdf0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdf1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdf2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdf3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdf4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdf5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdf6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdf7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdf8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdf9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdfa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdfb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdfc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdfd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdfe,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffdff,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe00,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe01,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe02,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe03,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe04,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe05,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe06,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe07,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe08,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe09,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe0a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe0b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe0c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe0d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe0e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe0f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe10,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe11,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe12,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe13,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe14,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe15,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe16,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe17,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe18,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe19,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe1a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe1b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe1c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe1d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe1e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe1f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe20,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe21,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe22,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe23,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe24,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe25,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe26,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe27,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe28,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe29,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe2a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe2b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe2c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe2d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe2e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe2f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe30,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe31,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe32,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe33,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe34,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe35,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe36,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe37,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe38,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe39,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe3a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe3b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe3c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe3d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe3e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe3f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe40,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe41,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe42,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe43,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe44,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe45,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe46,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe47,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe48,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe49,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe4a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe4b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe4c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe4d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe4e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe4f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe50,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe51,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe52,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe53,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe54,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe55,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe56,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe57,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe58,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe59,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe5a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe5b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe5c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe5d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe5e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe5f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe60,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe61,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe62,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe63,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe64,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe65,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe66,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe67,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe68,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe69,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe6a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe6b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe6c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe6d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe6e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe6f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe70,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe71,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe72,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe73,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe74,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe75,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe76,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe77,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe78,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe79,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe7a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe7b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe7c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe7d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe7e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe7f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe80,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe81,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe82,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe83,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe84,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe85,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe86,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe87,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe88,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe89,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe8a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe8b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe8c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe8d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe8e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe8f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe90,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe91,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe92,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe93,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe94,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe95,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe96,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe97,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe98,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe99,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe9a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe9b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe9c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe9d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe9e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffe9f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffea0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffea1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffea2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffea3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffea4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffea5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffea6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffea7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffea8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffea9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffeaa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffeab,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffeac,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffead,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffeae,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffeaf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffeb0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffeb1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffeb2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffeb3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffeb4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffeb5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffeb6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffeb7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffeb8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffeb9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffeba,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffebb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffebc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffebd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffebe,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffebf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffec0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffec1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffec2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffec3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffec4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffec5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffec6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffec7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffec8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffec9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffeca,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffecb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffecc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffecd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffece,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffecf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffed0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffed1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffed2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffed3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffed4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffed5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffed6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffed7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffed8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffed9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffeda,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffedb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffedc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffedd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffede,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffedf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffee0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffee1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffee2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffee3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffee4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffee5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffee6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffee7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffee8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffee9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffeea,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffeeb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffeec,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffeed,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffeee,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffeef,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffef0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffef1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffef2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffef3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffef4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffef5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffef6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffef7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffef8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffef9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffefa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffefb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffefc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffefd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffefe,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffeff,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff00,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff01,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff02,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff03,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff04,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff05,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff06,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff07,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff08,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff09,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff0a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff0b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff0c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff0d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff0e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff0f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff10,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff11,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff12,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff13,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff14,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff15,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff16,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff17,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff18,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff19,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff1a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff1b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff1c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff1d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff1e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff1f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff20,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff21,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff22,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff23,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff24,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff25,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff26,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff27,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff28,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff29,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff2a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff2b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff2c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff2d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff2e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff2f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff30,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff31,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff32,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff33,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff34,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff35,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff36,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff37,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff38,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff39,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff3a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff3b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff3c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff3d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff3e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff3f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff40,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff41,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff42,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff43,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff44,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff45,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff46,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff47,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff48,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff49,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff4a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff4b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff4c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff4d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff4e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff4f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff50,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff51,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff52,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff53,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff54,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff55,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff56,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff57,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff58,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff59,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff5a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff5b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff5c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff5d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff5e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff5f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff60,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff61,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff62,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff63,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff64,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff65,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff66,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff67,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff68,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff69,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff6a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff6b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff6c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff6d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff6e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff6f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff70,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff71,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff72,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff73,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff74,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff75,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff76,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff77,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff78,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff79,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff7a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff7b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff7c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff7d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff7e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff7f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff80,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff81,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff82,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff83,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff84,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff85,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff86,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff87,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff88,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff89,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff8a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff8b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff8c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff8d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff8e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff8f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff90,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff91,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff92,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff93,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff94,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff95,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff96,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff97,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff98,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff99,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff9a,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff9b,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff9c,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff9d,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff9e,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfff9f,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffa0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffa1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffa2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffa3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffa4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffa5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffa6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffa7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffa8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffa9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffaa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffab,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffac,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffad,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffae,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffaf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffb0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffb1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffb2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffb3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffb4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffb5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffb6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffb7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffb8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffb9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffba,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffbb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffbc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffbd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffbe,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffbf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffc0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffc1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffc2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffc3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffc4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffc5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffc6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffc7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffc8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffc9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffca,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffcb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffcc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffcd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffce,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffcf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffd0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffd1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffd2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffd3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffd4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffd5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffd6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffd7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffd8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffd9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffda,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffdb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffdc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffdd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffde,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffdf,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffe0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffe1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffe2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffe3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffe4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffe5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffe6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffe7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffe8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffe9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffea,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffeb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffec,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffed,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffee,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffef,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffff0,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffff1,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffff2,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffff3,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffff4,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffff5,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffff6,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffff7,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffff8,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffff9,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffffa,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffffb,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffffc,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffffd,
+ "<Plane 15 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xffffe,
+ "<control>",
+ NULL,
+ NULL,
+ {
+ category::other_control,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::zero_data1_data2_cp,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::control,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0xfffff,
+ "<control>",
+ NULL,
+ NULL,
+ {
+ category::other_control,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::zero_data1_data2_cp,
+ 0,
+ bidi_class::weak_boundary_neutral,
+ decomposition_type::none,
+ break_class::combining_mark,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::control,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+};
+
+
+}}} // namespaces

Added: sandbox/SOC/2009/unicode/libs/unicode/src/ucd/uni_ucd_interface_impl_data_13.ipp
==============================================================================
--- (empty file)
+++ sandbox/SOC/2009/unicode/libs/unicode/src/ucd/uni_ucd_interface_impl_data_13.ipp 2009-06-20 11:05:18 EDT (Sat, 20 Jun 2009)
@@ -0,0 +1,98337 @@
+// Though this file is under the Boost license, it is NOT (or not yet) part of
+// Boost!
+
+// Copyright Graham Barnett, Rogier van Dalen 2005.
+// Use, modification, and distribution are subject to the Boost Software
+// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
+// http://www.boost.org/LICENSE_1_0.txt)
+
+// This file was created using information from the
+// www.unicode.org web site
+// License http://www.unicode.org/copyright.html
+
+/**** This file should not be included in any file manually ****/
+/**** This file is automatically generated and should not be modified.****/
+/**** Data in this file should not be accessed directly except ****/
+/**** through the single published interface as documented in Boost ****/
+
+
+using namespace boost::unicode;
+
+
+
+namespace boost { namespace unicode { namespace ucd {
+
+
+
+
+static const unichar_data_internal __uni_char_data_100000[]=
+{
+ { // char 0x100000,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100001,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100002,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100003,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100004,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100005,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100006,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100007,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100008,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100009,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10000a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10000b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10000c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10000d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10000e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10000f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100010,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100011,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100012,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100013,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100014,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100015,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100016,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100017,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100018,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100019,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10001a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10001b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10001c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10001d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10001e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10001f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100020,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100021,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100022,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100023,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100024,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100025,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100026,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100027,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100028,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100029,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10002a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10002b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10002c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10002d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10002e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10002f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100030,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100031,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100032,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100033,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100034,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100035,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100036,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100037,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100038,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100039,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10003a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10003b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10003c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10003d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10003e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10003f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100040,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100041,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100042,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100043,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100044,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100045,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100046,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100047,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100048,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100049,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10004a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10004b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10004c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10004d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10004e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10004f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100050,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100051,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100052,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100053,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100054,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100055,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100056,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100057,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100058,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100059,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10005a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10005b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10005c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10005d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10005e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10005f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100060,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100061,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100062,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100063,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100064,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100065,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100066,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100067,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100068,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100069,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10006a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10006b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10006c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10006d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10006e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10006f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100070,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100071,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100072,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100073,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100074,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100075,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100076,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100077,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100078,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100079,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10007a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10007b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10007c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10007d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10007e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10007f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100080,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100081,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100082,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100083,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100084,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100085,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100086,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100087,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100088,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100089,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10008a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10008b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10008c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10008d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10008e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10008f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100090,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100091,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100092,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100093,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100094,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100095,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100096,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100097,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100098,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100099,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10009a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10009b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10009c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10009d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10009e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10009f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000a0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000a1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000a2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000a3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000a4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000a5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000a6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000a7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000a8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000a9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000aa,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000ab,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000ac,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000ad,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000ae,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000af,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000b0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000b1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000b2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000b3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000b4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000b5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000b6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000b7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000b8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000b9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000ba,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000bb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000bc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000bd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000be,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000bf,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000c0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000c1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000c2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000c3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000c4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000c5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000c6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000c7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000c8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000c9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000ca,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000cb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000cc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000cd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000ce,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000cf,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000d0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000d1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000d2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000d3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000d4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000d5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000d6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000d7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000d8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000d9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000da,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000db,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000dc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000dd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000de,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000df,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000e0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000e1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000e2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000e3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000e4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000e5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000e6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000e7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000e8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000e9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000ea,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000eb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000ec,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000ed,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000ee,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000ef,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000f0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000f1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000f2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000f3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000f4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000f5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000f6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000f7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000f8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000f9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000fa,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000fb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000fc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000fd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000fe,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1000ff,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100100,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100101,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100102,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100103,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100104,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100105,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100106,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100107,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100108,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100109,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10010a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10010b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10010c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10010d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10010e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10010f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100110,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100111,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100112,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100113,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100114,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100115,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100116,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100117,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100118,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100119,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10011a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10011b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10011c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10011d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10011e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10011f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100120,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100121,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100122,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100123,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100124,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100125,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100126,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100127,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100128,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100129,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10012a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10012b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10012c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10012d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10012e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10012f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100130,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100131,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100132,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100133,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100134,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100135,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100136,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100137,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100138,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100139,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10013a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10013b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10013c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10013d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10013e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10013f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100140,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100141,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100142,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100143,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100144,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100145,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100146,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100147,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100148,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100149,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10014a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10014b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10014c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10014d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10014e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10014f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100150,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100151,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100152,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100153,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100154,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100155,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100156,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100157,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100158,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100159,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10015a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10015b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10015c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10015d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10015e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10015f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100160,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100161,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100162,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100163,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100164,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100165,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100166,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100167,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100168,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100169,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10016a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10016b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10016c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10016d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10016e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10016f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100170,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100171,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100172,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100173,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100174,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100175,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100176,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100177,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100178,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100179,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10017a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10017b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10017c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10017d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10017e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10017f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100180,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100181,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100182,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100183,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100184,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100185,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100186,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100187,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100188,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100189,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10018a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10018b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10018c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10018d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10018e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10018f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100190,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100191,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100192,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100193,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100194,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100195,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100196,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100197,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100198,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100199,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10019a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10019b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10019c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10019d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10019e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10019f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001a0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001a1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001a2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001a3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001a4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001a5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001a6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001a7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001a8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001a9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001aa,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001ab,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001ac,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001ad,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001ae,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001af,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001b0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001b1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001b2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001b3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001b4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001b5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001b6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001b7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001b8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001b9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001ba,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001bb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001bc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001bd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001be,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001bf,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001c0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001c1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001c2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001c3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001c4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001c5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001c6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001c7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001c8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001c9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001ca,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001cb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001cc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001cd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001ce,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001cf,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001d0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001d1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001d2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001d3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001d4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001d5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001d6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001d7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001d8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001d9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001da,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001db,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001dc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001dd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001de,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001df,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001e0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001e1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001e2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001e3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001e4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001e5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001e6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001e7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001e8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001e9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001ea,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001eb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001ec,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001ed,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001ee,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001ef,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001f0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001f1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001f2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001f3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001f4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001f5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001f6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001f7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001f8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001f9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001fa,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001fb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001fc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001fd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001fe,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1001ff,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100200,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100201,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100202,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100203,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100204,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100205,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100206,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100207,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100208,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100209,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10020a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10020b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10020c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10020d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10020e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10020f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100210,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100211,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100212,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100213,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100214,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100215,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100216,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100217,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100218,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100219,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10021a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10021b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10021c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10021d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10021e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10021f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100220,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100221,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100222,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100223,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100224,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100225,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100226,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100227,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100228,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100229,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10022a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10022b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10022c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10022d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10022e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10022f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100230,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100231,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100232,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100233,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100234,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100235,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100236,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100237,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100238,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100239,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10023a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10023b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10023c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10023d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10023e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10023f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100240,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100241,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100242,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100243,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100244,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100245,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100246,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100247,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100248,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100249,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10024a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10024b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10024c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10024d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10024e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10024f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100250,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100251,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100252,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100253,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100254,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100255,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100256,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100257,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100258,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100259,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10025a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10025b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10025c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10025d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10025e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10025f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100260,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100261,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100262,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100263,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100264,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100265,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100266,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100267,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100268,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100269,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10026a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10026b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10026c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10026d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10026e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10026f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100270,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100271,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100272,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100273,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100274,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100275,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100276,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100277,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100278,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100279,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10027a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10027b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10027c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10027d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10027e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10027f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100280,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100281,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100282,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100283,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100284,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100285,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100286,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100287,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100288,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100289,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10028a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10028b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10028c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10028d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10028e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10028f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100290,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100291,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100292,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100293,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100294,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100295,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100296,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100297,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100298,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100299,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10029a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10029b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10029c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10029d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10029e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10029f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002a0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002a1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002a2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002a3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002a4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002a5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002a6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002a7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002a8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002a9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002aa,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002ab,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002ac,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002ad,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002ae,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002af,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002b0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002b1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002b2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002b3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002b4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002b5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002b6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002b7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002b8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002b9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002ba,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002bb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002bc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002bd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002be,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002bf,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002c0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002c1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002c2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002c3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002c4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002c5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002c6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002c7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002c8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002c9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002ca,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002cb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002cc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002cd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002ce,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002cf,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002d0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002d1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002d2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002d3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002d4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002d5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002d6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002d7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002d8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002d9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002da,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002db,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002dc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002dd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002de,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002df,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002e0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002e1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002e2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002e3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002e4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002e5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002e6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002e7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002e8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002e9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002ea,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002eb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002ec,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002ed,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002ee,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002ef,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002f0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002f1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002f2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002f3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002f4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002f5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002f6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002f7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002f8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002f9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002fa,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002fb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002fc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002fd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002fe,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1002ff,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100300,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100301,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100302,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100303,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100304,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100305,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100306,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100307,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100308,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100309,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10030a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10030b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10030c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10030d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10030e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10030f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100310,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100311,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100312,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100313,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100314,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100315,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100316,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100317,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100318,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100319,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10031a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10031b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10031c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10031d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10031e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10031f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100320,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100321,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100322,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100323,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100324,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100325,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100326,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100327,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100328,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100329,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10032a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10032b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10032c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10032d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10032e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10032f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100330,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100331,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100332,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100333,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100334,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100335,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100336,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100337,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100338,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100339,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10033a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10033b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10033c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10033d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10033e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10033f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100340,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100341,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100342,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100343,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100344,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100345,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100346,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100347,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100348,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100349,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10034a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10034b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10034c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10034d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10034e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10034f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100350,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100351,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100352,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100353,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100354,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100355,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100356,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100357,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100358,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100359,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10035a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10035b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10035c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10035d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10035e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10035f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100360,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100361,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100362,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100363,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100364,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100365,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100366,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100367,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100368,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100369,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10036a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10036b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10036c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10036d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10036e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10036f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100370,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100371,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100372,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100373,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100374,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100375,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100376,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100377,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100378,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100379,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10037a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10037b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10037c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10037d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10037e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10037f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100380,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100381,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100382,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100383,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100384,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100385,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100386,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100387,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100388,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100389,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10038a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10038b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10038c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10038d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10038e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10038f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100390,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100391,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100392,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100393,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100394,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100395,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100396,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100397,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100398,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100399,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10039a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10039b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10039c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10039d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10039e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10039f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003a0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003a1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003a2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003a3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003a4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003a5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003a6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003a7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003a8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003a9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003aa,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003ab,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003ac,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003ad,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003ae,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003af,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003b0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003b1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003b2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003b3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003b4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003b5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003b6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003b7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003b8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003b9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003ba,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003bb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003bc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003bd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003be,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003bf,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003c0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003c1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003c2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003c3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003c4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003c5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003c6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003c7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003c8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003c9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003ca,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003cb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003cc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003cd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003ce,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003cf,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003d0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003d1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003d2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003d3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003d4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003d5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003d6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003d7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003d8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003d9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003da,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003db,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003dc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003dd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003de,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003df,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003e0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003e1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003e2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003e3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003e4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003e5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003e6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003e7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003e8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003e9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003ea,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003eb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003ec,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003ed,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003ee,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003ef,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003f0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003f1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003f2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003f3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003f4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003f5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003f6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003f7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003f8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003f9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003fa,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003fb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003fc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003fd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003fe,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1003ff,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100400,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100401,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100402,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100403,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100404,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100405,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100406,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100407,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100408,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100409,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10040a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10040b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10040c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10040d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10040e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10040f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100410,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100411,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100412,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100413,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100414,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100415,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100416,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100417,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100418,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100419,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10041a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10041b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10041c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10041d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10041e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10041f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100420,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100421,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100422,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100423,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100424,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100425,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100426,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100427,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100428,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100429,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10042a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10042b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10042c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10042d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10042e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10042f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100430,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100431,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100432,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100433,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100434,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100435,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100436,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100437,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100438,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100439,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10043a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10043b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10043c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10043d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10043e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10043f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100440,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100441,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100442,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100443,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100444,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100445,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100446,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100447,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100448,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100449,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10044a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10044b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10044c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10044d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10044e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10044f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100450,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100451,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100452,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100453,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100454,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100455,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100456,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100457,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100458,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100459,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10045a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10045b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10045c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10045d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10045e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10045f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100460,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100461,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100462,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100463,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100464,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100465,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100466,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100467,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100468,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100469,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10046a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10046b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10046c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10046d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10046e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10046f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100470,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100471,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100472,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100473,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100474,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100475,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100476,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100477,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100478,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100479,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10047a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10047b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10047c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10047d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10047e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10047f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100480,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100481,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100482,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100483,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100484,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100485,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100486,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100487,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100488,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100489,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10048a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10048b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10048c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10048d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10048e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10048f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100490,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100491,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100492,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100493,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100494,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100495,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100496,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100497,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100498,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100499,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10049a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10049b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10049c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10049d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10049e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10049f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004a0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004a1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004a2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004a3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004a4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004a5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004a6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004a7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004a8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004a9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004aa,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004ab,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004ac,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004ad,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004ae,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004af,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004b0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004b1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004b2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004b3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004b4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004b5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004b6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004b7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004b8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004b9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004ba,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004bb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004bc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004bd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004be,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004bf,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004c0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004c1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004c2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004c3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004c4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004c5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004c6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004c7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004c8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004c9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004ca,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004cb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004cc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004cd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004ce,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004cf,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004d0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004d1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004d2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004d3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004d4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004d5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004d6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004d7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004d8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004d9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004da,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004db,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004dc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004dd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004de,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004df,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004e0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004e1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004e2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004e3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004e4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004e5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004e6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004e7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004e8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004e9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004ea,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004eb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004ec,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004ed,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004ee,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004ef,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004f0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004f1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004f2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004f3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004f4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004f5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004f6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004f7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004f8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004f9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004fa,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004fb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004fc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004fd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004fe,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1004ff,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100500,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100501,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100502,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100503,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100504,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100505,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100506,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100507,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100508,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100509,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10050a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10050b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10050c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10050d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10050e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10050f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100510,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100511,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100512,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100513,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100514,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100515,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100516,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100517,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100518,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100519,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10051a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10051b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10051c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10051d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10051e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10051f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100520,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100521,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100522,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100523,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100524,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100525,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100526,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100527,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100528,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100529,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10052a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10052b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10052c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10052d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10052e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10052f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100530,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100531,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100532,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100533,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100534,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100535,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100536,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100537,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100538,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100539,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10053a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10053b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10053c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10053d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10053e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10053f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100540,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100541,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100542,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100543,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100544,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100545,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100546,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100547,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100548,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100549,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10054a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10054b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10054c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10054d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10054e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10054f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100550,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100551,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100552,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100553,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100554,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100555,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100556,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100557,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100558,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100559,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10055a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10055b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10055c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10055d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10055e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10055f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100560,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100561,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100562,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100563,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100564,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100565,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100566,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100567,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100568,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100569,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10056a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10056b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10056c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10056d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10056e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10056f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100570,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100571,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100572,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100573,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100574,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100575,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100576,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100577,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100578,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100579,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10057a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10057b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10057c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10057d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10057e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10057f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100580,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100581,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100582,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100583,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100584,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100585,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100586,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100587,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100588,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100589,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10058a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10058b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10058c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10058d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10058e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10058f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100590,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100591,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100592,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100593,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100594,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100595,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100596,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100597,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100598,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100599,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10059a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10059b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10059c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10059d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10059e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10059f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005a0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005a1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005a2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005a3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005a4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005a5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005a6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005a7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005a8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005a9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005aa,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005ab,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005ac,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005ad,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005ae,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005af,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005b0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005b1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005b2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005b3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005b4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005b5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005b6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005b7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005b8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005b9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005ba,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005bb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005bc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005bd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005be,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005bf,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005c0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005c1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005c2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005c3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005c4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005c5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005c6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005c7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005c8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005c9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005ca,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005cb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005cc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005cd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005ce,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005cf,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005d0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005d1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005d2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005d3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005d4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005d5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005d6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005d7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005d8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005d9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005da,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005db,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005dc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005dd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005de,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005df,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005e0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005e1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005e2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005e3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005e4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005e5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005e6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005e7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005e8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005e9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005ea,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005eb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005ec,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005ed,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005ee,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005ef,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005f0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005f1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005f2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005f3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005f4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005f5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005f6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005f7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005f8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005f9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005fa,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005fb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005fc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005fd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005fe,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1005ff,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100600,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100601,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100602,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100603,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100604,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100605,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100606,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100607,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100608,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100609,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10060a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10060b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10060c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10060d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10060e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10060f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100610,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100611,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100612,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100613,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100614,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100615,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100616,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100617,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100618,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100619,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10061a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10061b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10061c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10061d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10061e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10061f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100620,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100621,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100622,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100623,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100624,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100625,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100626,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100627,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100628,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100629,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10062a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10062b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10062c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10062d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10062e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10062f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100630,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100631,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100632,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100633,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100634,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100635,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100636,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100637,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100638,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100639,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10063a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10063b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10063c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10063d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10063e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10063f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100640,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100641,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100642,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100643,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100644,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100645,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100646,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100647,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100648,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100649,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10064a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10064b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10064c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10064d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10064e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10064f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100650,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100651,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100652,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100653,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100654,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100655,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100656,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100657,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100658,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100659,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10065a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10065b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10065c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10065d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10065e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10065f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100660,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100661,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100662,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100663,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100664,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100665,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100666,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100667,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100668,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100669,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10066a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10066b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10066c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10066d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10066e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10066f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100670,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100671,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100672,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100673,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100674,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100675,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100676,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100677,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100678,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100679,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10067a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10067b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10067c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10067d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10067e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10067f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100680,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100681,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100682,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100683,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100684,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100685,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100686,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100687,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100688,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100689,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10068a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10068b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10068c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10068d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10068e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10068f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100690,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100691,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100692,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100693,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100694,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100695,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100696,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100697,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100698,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100699,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10069a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10069b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10069c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10069d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10069e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10069f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006a0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006a1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006a2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006a3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006a4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006a5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006a6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006a7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006a8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006a9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006aa,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006ab,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006ac,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006ad,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006ae,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006af,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006b0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006b1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006b2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006b3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006b4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006b5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006b6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006b7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006b8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006b9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006ba,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006bb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006bc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006bd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006be,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006bf,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006c0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006c1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006c2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006c3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006c4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006c5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006c6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006c7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006c8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006c9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006ca,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006cb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006cc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006cd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006ce,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006cf,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006d0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006d1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006d2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006d3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006d4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006d5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006d6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006d7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006d8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006d9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006da,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006db,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006dc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006dd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006de,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006df,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006e0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006e1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006e2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006e3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006e4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006e5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006e6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006e7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006e8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006e9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006ea,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006eb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006ec,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006ed,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006ee,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006ef,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006f0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006f1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006f2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006f3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006f4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006f5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006f6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006f7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006f8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006f9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006fa,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006fb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006fc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006fd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006fe,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1006ff,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100700,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100701,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100702,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100703,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100704,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100705,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100706,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100707,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100708,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100709,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10070a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10070b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10070c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10070d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10070e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10070f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100710,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100711,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100712,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100713,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100714,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100715,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100716,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100717,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100718,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100719,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10071a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10071b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10071c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10071d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10071e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10071f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100720,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100721,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100722,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100723,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100724,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100725,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100726,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100727,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100728,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100729,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10072a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10072b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10072c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10072d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10072e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10072f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100730,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100731,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100732,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100733,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100734,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100735,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100736,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100737,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100738,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100739,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10073a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10073b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10073c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10073d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10073e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10073f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100740,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100741,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100742,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100743,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100744,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100745,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100746,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100747,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100748,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100749,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10074a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10074b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10074c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10074d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10074e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10074f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100750,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100751,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100752,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100753,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100754,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100755,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100756,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100757,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100758,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100759,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10075a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10075b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10075c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10075d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10075e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10075f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100760,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100761,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100762,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100763,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100764,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100765,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100766,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100767,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100768,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100769,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10076a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10076b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10076c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10076d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10076e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10076f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100770,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100771,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100772,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100773,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100774,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100775,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100776,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100777,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100778,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100779,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10077a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10077b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10077c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10077d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10077e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10077f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100780,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100781,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100782,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100783,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100784,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100785,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100786,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100787,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100788,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100789,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10078a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10078b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10078c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10078d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10078e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10078f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100790,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100791,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100792,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100793,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100794,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100795,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100796,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100797,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100798,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100799,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10079a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10079b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10079c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10079d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10079e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10079f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007a0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007a1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007a2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007a3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007a4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007a5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007a6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007a7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007a8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007a9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007aa,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007ab,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007ac,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007ad,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007ae,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007af,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007b0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007b1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007b2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007b3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007b4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007b5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007b6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007b7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007b8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007b9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007ba,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007bb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007bc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007bd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007be,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007bf,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007c0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007c1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007c2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007c3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007c4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007c5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007c6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007c7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007c8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007c9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007ca,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007cb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007cc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007cd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007ce,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007cf,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007d0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007d1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007d2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007d3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007d4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007d5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007d6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007d7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007d8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007d9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007da,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007db,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007dc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007dd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007de,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007df,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007e0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007e1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007e2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007e3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007e4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007e5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007e6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007e7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007e8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007e9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007ea,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007eb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007ec,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007ed,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007ee,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007ef,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007f0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007f1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007f2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007f3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007f4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007f5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007f6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007f7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007f8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007f9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007fa,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007fb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007fc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007fd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007fe,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1007ff,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100800,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100801,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100802,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100803,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100804,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100805,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100806,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100807,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100808,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100809,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10080a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10080b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10080c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10080d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10080e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10080f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100810,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100811,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100812,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100813,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100814,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100815,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100816,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100817,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100818,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100819,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10081a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10081b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10081c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10081d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10081e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10081f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100820,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100821,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100822,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100823,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100824,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100825,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100826,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100827,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100828,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100829,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10082a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10082b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10082c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10082d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10082e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10082f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100830,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100831,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100832,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100833,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100834,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100835,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100836,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100837,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100838,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100839,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10083a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10083b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10083c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10083d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10083e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10083f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100840,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100841,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100842,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100843,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100844,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100845,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100846,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100847,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100848,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100849,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10084a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10084b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10084c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10084d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10084e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10084f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100850,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100851,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100852,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100853,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100854,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100855,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100856,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100857,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100858,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100859,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10085a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10085b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10085c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10085d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10085e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10085f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100860,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100861,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100862,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100863,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100864,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100865,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100866,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100867,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100868,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100869,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10086a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10086b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10086c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10086d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10086e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10086f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100870,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100871,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100872,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100873,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100874,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100875,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100876,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100877,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100878,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100879,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10087a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10087b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10087c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10087d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10087e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10087f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100880,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100881,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100882,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100883,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100884,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100885,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100886,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100887,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100888,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100889,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10088a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10088b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10088c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10088d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10088e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10088f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100890,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100891,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100892,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100893,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100894,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100895,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100896,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100897,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100898,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100899,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10089a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10089b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10089c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10089d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10089e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10089f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008a0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008a1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008a2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008a3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008a4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008a5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008a6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008a7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008a8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008a9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008aa,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008ab,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008ac,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008ad,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008ae,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008af,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008b0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008b1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008b2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008b3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008b4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008b5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008b6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008b7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008b8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008b9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008ba,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008bb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008bc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008bd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008be,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008bf,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008c0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008c1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008c2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008c3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008c4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008c5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008c6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008c7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008c8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008c9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008ca,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008cb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008cc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008cd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008ce,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008cf,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008d0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008d1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008d2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008d3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008d4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008d5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008d6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008d7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008d8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008d9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008da,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008db,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008dc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008dd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008de,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008df,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008e0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008e1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008e2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008e3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008e4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008e5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008e6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008e7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008e8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008e9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008ea,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008eb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008ec,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008ed,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008ee,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008ef,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008f0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008f1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008f2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008f3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008f4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008f5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008f6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008f7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008f8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008f9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008fa,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008fb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008fc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008fd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008fe,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1008ff,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100900,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100901,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100902,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100903,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100904,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100905,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100906,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100907,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100908,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100909,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10090a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10090b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10090c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10090d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10090e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10090f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100910,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100911,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100912,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100913,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100914,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100915,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100916,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100917,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100918,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100919,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10091a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10091b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10091c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10091d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10091e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10091f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100920,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100921,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100922,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100923,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100924,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100925,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100926,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100927,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100928,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100929,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10092a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10092b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10092c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10092d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10092e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10092f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100930,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100931,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100932,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100933,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100934,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100935,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100936,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100937,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100938,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100939,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10093a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10093b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10093c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10093d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10093e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10093f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100940,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100941,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100942,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100943,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100944,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100945,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100946,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100947,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100948,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100949,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10094a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10094b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10094c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10094d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10094e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10094f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100950,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100951,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100952,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100953,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100954,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100955,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100956,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100957,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100958,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100959,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10095a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10095b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10095c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10095d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10095e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10095f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100960,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100961,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100962,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100963,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100964,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100965,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100966,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100967,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100968,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100969,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10096a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10096b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10096c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10096d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10096e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10096f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100970,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100971,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100972,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100973,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100974,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100975,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100976,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100977,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100978,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100979,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10097a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10097b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10097c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10097d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10097e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10097f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100980,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100981,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100982,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100983,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100984,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100985,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100986,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100987,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100988,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100989,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10098a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10098b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10098c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10098d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10098e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10098f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100990,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100991,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100992,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100993,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100994,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100995,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100996,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100997,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100998,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100999,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10099a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10099b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10099c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10099d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10099e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x10099f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009a0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009a1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009a2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009a3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009a4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009a5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009a6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009a7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009a8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009a9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009aa,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009ab,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009ac,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009ad,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009ae,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009af,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009b0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009b1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009b2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009b3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009b4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009b5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009b6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009b7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009b8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009b9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009ba,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009bb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009bc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009bd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009be,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009bf,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009c0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009c1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009c2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009c3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009c4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009c5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009c6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009c7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009c8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009c9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009ca,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009cb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009cc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009cd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009ce,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009cf,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009d0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009d1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009d2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009d3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009d4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009d5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009d6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009d7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009d8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009d9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009da,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009db,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009dc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009dd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009de,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009df,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009e0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009e1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009e2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009e3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009e4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009e5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009e6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009e7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009e8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009e9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009ea,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009eb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009ec,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009ed,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009ee,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009ef,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009f0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009f1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009f2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009f3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009f4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009f5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009f6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009f7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009f8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009f9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009fa,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009fb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009fc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009fd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009fe,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x1009ff,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a00,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a01,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a02,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a03,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a04,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a05,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a06,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a07,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a08,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a09,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a0a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a0b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a0c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a0d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a0e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a0f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a10,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a11,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a12,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a13,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a14,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a15,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a16,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a17,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a18,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a19,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a1a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a1b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a1c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a1d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a1e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a1f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a20,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a21,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a22,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a23,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a24,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a25,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a26,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a27,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a28,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a29,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a2a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a2b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a2c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a2d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a2e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a2f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a30,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a31,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a32,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a33,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a34,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a35,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a36,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a37,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a38,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a39,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a3a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a3b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a3c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a3d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a3e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a3f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a40,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a41,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a42,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a43,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a44,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a45,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a46,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a47,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a48,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a49,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a4a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a4b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a4c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a4d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a4e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a4f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a50,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a51,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a52,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a53,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a54,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a55,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a56,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a57,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a58,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a59,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a5a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a5b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a5c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a5d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a5e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a5f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a60,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a61,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a62,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a63,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a64,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a65,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a66,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a67,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a68,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a69,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a6a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a6b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a6c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a6d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a6e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a6f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a70,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a71,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a72,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a73,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a74,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a75,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a76,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a77,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a78,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a79,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a7a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a7b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a7c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a7d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a7e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a7f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a80,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a81,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a82,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a83,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a84,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a85,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a86,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a87,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a88,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a89,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a8a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a8b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a8c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a8d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a8e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a8f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a90,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a91,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a92,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a93,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a94,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a95,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a96,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a97,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a98,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a99,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a9a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a9b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a9c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a9d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a9e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100a9f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100aa0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100aa1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100aa2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100aa3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100aa4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100aa5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100aa6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100aa7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100aa8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100aa9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100aaa,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100aab,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100aac,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100aad,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100aae,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100aaf,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ab0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ab1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ab2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ab3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ab4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ab5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ab6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ab7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ab8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ab9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100aba,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100abb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100abc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100abd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100abe,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100abf,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ac0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ac1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ac2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ac3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ac4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ac5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ac6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ac7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ac8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ac9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100aca,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100acb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100acc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100acd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ace,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100acf,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ad0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ad1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ad2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ad3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ad4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ad5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ad6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ad7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ad8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ad9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ada,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100adb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100adc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100add,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ade,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100adf,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ae0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ae1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ae2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ae3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ae4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ae5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ae6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ae7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ae8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ae9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100aea,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100aeb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100aec,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100aed,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100aee,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100aef,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100af0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100af1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100af2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100af3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100af4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100af5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100af6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100af7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100af8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100af9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100afa,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100afb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100afc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100afd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100afe,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100aff,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b00,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b01,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b02,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b03,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b04,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b05,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b06,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b07,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b08,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b09,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b0a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b0b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b0c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b0d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b0e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b0f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b10,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b11,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b12,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b13,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b14,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b15,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b16,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b17,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b18,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b19,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b1a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b1b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b1c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b1d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b1e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b1f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b20,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b21,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b22,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b23,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b24,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b25,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b26,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b27,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b28,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b29,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b2a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b2b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b2c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b2d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b2e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b2f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b30,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b31,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b32,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b33,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b34,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b35,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b36,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b37,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b38,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b39,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b3a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b3b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b3c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b3d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b3e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b3f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b40,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b41,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b42,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b43,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b44,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b45,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b46,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b47,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b48,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b49,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b4a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b4b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b4c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b4d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b4e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b4f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b50,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b51,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b52,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b53,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b54,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b55,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b56,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b57,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b58,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b59,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b5a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b5b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b5c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b5d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b5e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b5f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b60,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b61,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b62,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b63,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b64,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b65,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b66,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b67,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b68,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b69,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b6a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b6b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b6c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b6d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b6e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b6f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b70,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b71,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b72,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b73,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b74,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b75,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b76,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b77,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b78,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b79,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b7a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b7b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b7c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b7d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b7e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b7f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b80,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b81,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b82,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b83,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b84,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b85,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b86,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b87,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b88,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b89,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b8a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b8b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b8c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b8d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b8e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b8f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b90,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b91,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b92,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b93,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b94,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b95,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b96,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b97,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b98,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b99,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b9a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b9b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b9c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b9d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b9e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100b9f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ba0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ba1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ba2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ba3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ba4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ba5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ba6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ba7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ba8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ba9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100baa,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bab,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bac,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bad,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bae,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100baf,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bb0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bb1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bb2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bb3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bb4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bb5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bb6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bb7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bb8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bb9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bba,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bbb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bbc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bbd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bbe,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bbf,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bc0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bc1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bc2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bc3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bc4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bc5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bc6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bc7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bc8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bc9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bca,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bcb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bcc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bcd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bce,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bcf,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bd0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bd1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bd2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bd3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bd4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bd5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bd6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bd7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bd8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bd9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bda,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bdb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bdc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bdd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bde,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bdf,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100be0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100be1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100be2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100be3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100be4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100be5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100be6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100be7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100be8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100be9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bea,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100beb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bec,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bed,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bee,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bef,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bf0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bf1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bf2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bf3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bf4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bf5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bf6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bf7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bf8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bf9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bfa,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bfb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bfc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bfd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bfe,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100bff,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c00,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c01,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c02,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c03,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c04,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c05,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c06,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c07,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c08,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c09,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c0a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c0b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c0c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c0d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c0e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c0f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c10,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c11,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c12,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c13,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c14,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c15,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c16,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c17,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c18,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c19,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c1a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c1b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c1c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c1d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c1e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c1f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c20,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c21,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c22,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c23,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c24,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c25,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c26,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c27,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c28,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c29,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c2a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c2b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c2c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c2d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c2e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c2f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c30,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c31,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c32,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c33,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c34,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c35,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c36,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c37,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c38,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c39,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c3a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c3b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c3c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c3d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c3e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c3f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c40,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c41,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c42,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c43,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c44,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c45,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c46,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c47,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c48,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c49,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c4a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c4b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c4c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c4d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c4e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c4f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c50,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c51,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c52,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c53,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c54,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c55,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c56,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c57,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c58,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c59,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c5a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c5b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c5c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c5d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c5e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c5f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c60,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c61,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c62,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c63,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c64,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c65,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c66,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c67,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c68,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c69,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c6a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c6b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c6c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c6d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c6e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c6f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c70,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c71,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c72,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c73,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c74,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c75,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c76,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c77,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c78,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c79,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c7a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c7b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c7c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c7d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c7e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c7f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c80,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c81,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c82,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c83,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c84,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c85,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c86,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c87,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c88,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c89,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c8a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c8b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c8c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c8d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c8e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c8f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c90,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c91,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c92,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c93,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c94,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c95,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c96,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c97,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c98,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c99,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c9a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c9b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c9c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c9d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c9e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100c9f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ca0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ca1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ca2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ca3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ca4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ca5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ca6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ca7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ca8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ca9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100caa,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cab,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cac,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cad,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cae,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100caf,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cb0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cb1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cb2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cb3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cb4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cb5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cb6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cb7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cb8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cb9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cba,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cbb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cbc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cbd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cbe,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cbf,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cc0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cc1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cc2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cc3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cc4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cc5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cc6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cc7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cc8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cc9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cca,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ccb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ccc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ccd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cce,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ccf,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cd0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cd1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cd2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cd3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cd4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cd5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cd6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cd7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cd8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cd9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cda,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cdb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cdc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cdd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cde,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cdf,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ce0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ce1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ce2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ce3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ce4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ce5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ce6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ce7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ce8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ce9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cea,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ceb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cec,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ced,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cee,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cef,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cf0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cf1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cf2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cf3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cf4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cf5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cf6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cf7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cf8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cf9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cfa,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cfb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cfc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cfd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cfe,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100cff,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d00,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d01,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d02,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d03,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d04,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d05,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d06,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d07,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d08,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d09,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d0a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d0b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d0c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d0d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d0e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d0f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d10,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d11,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d12,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d13,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d14,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d15,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d16,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d17,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d18,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d19,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d1a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d1b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d1c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d1d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d1e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d1f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d20,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d21,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d22,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d23,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d24,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d25,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d26,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d27,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d28,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d29,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d2a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d2b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d2c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d2d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d2e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d2f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d30,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d31,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d32,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d33,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d34,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d35,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d36,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d37,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d38,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d39,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d3a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d3b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d3c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d3d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d3e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d3f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d40,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d41,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d42,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d43,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d44,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d45,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d46,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d47,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d48,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d49,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d4a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d4b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d4c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d4d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d4e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d4f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d50,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d51,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d52,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d53,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d54,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d55,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d56,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d57,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d58,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d59,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d5a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d5b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d5c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d5d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d5e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d5f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d60,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d61,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d62,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d63,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d64,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d65,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d66,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d67,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d68,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d69,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d6a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d6b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d6c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d6d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d6e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d6f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d70,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d71,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d72,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d73,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d74,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d75,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d76,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d77,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d78,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d79,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d7a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d7b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d7c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d7d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d7e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d7f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d80,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d81,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d82,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d83,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d84,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d85,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d86,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d87,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d88,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d89,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d8a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d8b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d8c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d8d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d8e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d8f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d90,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d91,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d92,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d93,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d94,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d95,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d96,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d97,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d98,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d99,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d9a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d9b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d9c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d9d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d9e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100d9f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100da0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100da1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100da2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100da3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100da4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100da5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100da6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100da7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100da8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100da9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100daa,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100dab,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100dac,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100dad,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100dae,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100daf,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100db0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100db1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100db2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100db3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100db4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100db5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100db6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100db7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100db8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100db9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100dba,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100dbb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100dbc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100dbd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100dbe,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100dbf,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100dc0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100dc1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100dc2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100dc3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100dc4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100dc5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100dc6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100dc7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100dc8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100dc9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100dca,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100dcb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100dcc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100dcd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100dce,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100dcf,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100dd0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100dd1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100dd2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100dd3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100dd4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100dd5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100dd6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100dd7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100dd8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100dd9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100dda,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ddb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ddc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ddd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100dde,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ddf,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100de0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100de1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100de2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100de3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100de4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100de5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100de6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100de7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100de8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100de9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100dea,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100deb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100dec,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ded,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100dee,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100def,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100df0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100df1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100df2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100df3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100df4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100df5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100df6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100df7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100df8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100df9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100dfa,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100dfb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100dfc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100dfd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100dfe,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100dff,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e00,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e01,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e02,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e03,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e04,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e05,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e06,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e07,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e08,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e09,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e0a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e0b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e0c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e0d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e0e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e0f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e10,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e11,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e12,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e13,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e14,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e15,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e16,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e17,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e18,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e19,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e1a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e1b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e1c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e1d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e1e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e1f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e20,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e21,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e22,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e23,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e24,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e25,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e26,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e27,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e28,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e29,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e2a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e2b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e2c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e2d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e2e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e2f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e30,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e31,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e32,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e33,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e34,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e35,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e36,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e37,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e38,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e39,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e3a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e3b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e3c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e3d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e3e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e3f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e40,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e41,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e42,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e43,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e44,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e45,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e46,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e47,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e48,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e49,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e4a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e4b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e4c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e4d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e4e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e4f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e50,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e51,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e52,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e53,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e54,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e55,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e56,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e57,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e58,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e59,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e5a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e5b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e5c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e5d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e5e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e5f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e60,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e61,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e62,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e63,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e64,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e65,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e66,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e67,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e68,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e69,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e6a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e6b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e6c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e6d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e6e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e6f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e70,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e71,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e72,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e73,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e74,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e75,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e76,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e77,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e78,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e79,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e7a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e7b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e7c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e7d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e7e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e7f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e80,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e81,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e82,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e83,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e84,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e85,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e86,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e87,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e88,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e89,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e8a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e8b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e8c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e8d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e8e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e8f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e90,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e91,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e92,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e93,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e94,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e95,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e96,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e97,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e98,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e99,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e9a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e9b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e9c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e9d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e9e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100e9f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ea0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ea1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ea2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ea3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ea4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ea5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ea6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ea7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ea8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ea9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100eaa,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100eab,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100eac,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ead,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100eae,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100eaf,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100eb0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100eb1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100eb2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100eb3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100eb4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100eb5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100eb6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100eb7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100eb8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100eb9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100eba,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ebb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ebc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ebd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ebe,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ebf,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ec0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ec1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ec2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ec3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ec4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ec5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ec6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ec7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ec8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ec9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100eca,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ecb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ecc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ecd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ece,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ecf,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ed0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ed1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ed2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ed3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ed4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ed5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ed6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ed7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ed8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ed9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100eda,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100edb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100edc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100edd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ede,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100edf,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ee0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ee1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ee2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ee3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ee4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ee5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ee6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ee7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ee8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ee9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100eea,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100eeb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100eec,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100eed,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100eee,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100eef,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ef0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ef1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ef2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ef3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ef4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ef5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ef6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ef7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ef8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ef9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100efa,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100efb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100efc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100efd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100efe,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100eff,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f00,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f01,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f02,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f03,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f04,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f05,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f06,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f07,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f08,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f09,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f0a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f0b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f0c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f0d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f0e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f0f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f10,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f11,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f12,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f13,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f14,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f15,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f16,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f17,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f18,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f19,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f1a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f1b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f1c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f1d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f1e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f1f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f20,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f21,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f22,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f23,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f24,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f25,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f26,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f27,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f28,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f29,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f2a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f2b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f2c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f2d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f2e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f2f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f30,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f31,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f32,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f33,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f34,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f35,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f36,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f37,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f38,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f39,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f3a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f3b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f3c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f3d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f3e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f3f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f40,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f41,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f42,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f43,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f44,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f45,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f46,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f47,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f48,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f49,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f4a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f4b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f4c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f4d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f4e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f4f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f50,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f51,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f52,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f53,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f54,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f55,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f56,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f57,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f58,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f59,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f5a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f5b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f5c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f5d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f5e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f5f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f60,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f61,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f62,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f63,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f64,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f65,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f66,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f67,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f68,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f69,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f6a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f6b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f6c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f6d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f6e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f6f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f70,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f71,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f72,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f73,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f74,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f75,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f76,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f77,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f78,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f79,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f7a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f7b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f7c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f7d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f7e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f7f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f80,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f81,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f82,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f83,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f84,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f85,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f86,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f87,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f88,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f89,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f8a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f8b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f8c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f8d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f8e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f8f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f90,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f91,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f92,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f93,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f94,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f95,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f96,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f97,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f98,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f99,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f9a,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f9b,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f9c,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f9d,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f9e,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100f9f,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fa0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fa1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fa2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fa3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fa4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fa5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fa6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fa7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fa8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fa9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100faa,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fab,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fac,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fad,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fae,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100faf,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fb0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fb1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fb2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fb3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fb4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fb5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fb6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fb7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fb8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fb9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fba,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fbb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fbc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fbd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fbe,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fbf,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fc0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fc1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fc2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fc3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fc4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fc5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fc6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fc7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fc8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fc9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fca,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fcb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fcc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fcd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fce,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fcf,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fd0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fd1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fd2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fd3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fd4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fd5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fd6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fd7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fd8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fd9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fda,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fdb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fdc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fdd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fde,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fdf,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fe0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fe1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fe2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fe3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fe4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fe5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fe6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fe7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fe8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fe9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fea,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100feb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fec,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fed,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fee,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fef,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ff0,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ff1,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ff2,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ff3,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ff4,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ff5,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ff6,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ff7,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ff8,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ff9,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ffa,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ffb,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ffc,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ffd,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100ffe,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+ { // char 0x100fff,
+ "<Plane 16 Private Use>",
+ NULL,
+ NULL,
+ {
+ category::other_private_use,
+ join_type::none,
+ word_break::any,
+ false,
+ false,
+ ucd::sort_type::default_,
+ 0,
+ bidi_class::strong_left_to_right,
+ decomposition_type::none,
+ break_class::unknown,
+ 0,
+ sentence_break::any,
+ grapheme_cluster_break::any,
+ },
+ 0,
+ 0x0,
+ 0x0,
+ 0x0,
+ },
+};
+
+
+}}} // namespaces

Added: sandbox/SOC/2009/unicode/libs/unicode/src/unicode_blocks.cpp
==============================================================================
--- (empty file)
+++ sandbox/SOC/2009/unicode/libs/unicode/src/unicode_blocks.cpp 2009-06-20 11:05:18 EDT (Sat, 20 Jun 2009)
@@ -0,0 +1,50 @@
+#include <boost/unicode/ucd/properties.hpp>
+#include <algorithm>
+
+using namespace boost::unicode::ucd;
+using namespace boost;
+
+namespace detail
+{
+ struct block_find
+ {
+ bool operator()(const boost::unicode::ucd::unichar_blocks_internal& a, const boost::unicode::ucd::unichar_blocks_internal& b) const
+ {
+ return a.first < b.first;
+ }
+
+ bool operator()(const boost::unicode::ucd::unichar_blocks_internal& a, char32 b) const
+ {
+ return a.first < b;
+ }
+ };
+}
+
+boost::unicode::ucd::block::type boost::unicode::ucd::get_block(char32 ch)
+{
+ const unichar_blocks_internal* end = __uni_block_data + __uni_block_data_size;
+
+ const unichar_blocks_internal* b = std::lower_bound(
+ __uni_block_data, end,
+ ch, ::detail::block_find()
+ );
+
+ if(b == __uni_block_data || b == end)
+ return block::none;
+
+ --b;
+ if(ch > b->last)
+ return block::none;
+
+ return (boost::unicode::ucd::block::type)b->first;
+}
+
+const char* boost::unicode::ucd::as_string(boost::unicode::ucd::block::type type)
+{
+ const unichar_blocks_internal* b = std::lower_bound(
+ __uni_block_data, __uni_block_data + __uni_block_data_size,
+ type, ::detail::block_find()
+ );
+
+ return b->name;
+}


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