aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-10-01 19:54:15 +0000
committerUlrich Drepper <drepper@redhat.com>2000-10-01 19:54:15 +0000
commit73fb7bf0921b90d6c3b4fa2cf1b7759c5267c6d5 (patch)
tree35b5ccde681198f1290a1eee53059099f0bb163c
parent3e07621988521feb5cdd8a99760d8bad1707cb57 (diff)
downloadglibc-73fb7bf0921b90d6c3b4fa2cf1b7759c5267c6d5.tar.xz
glibc-73fb7bf0921b90d6c3b4fa2cf1b7759c5267c6d5.zip
Update.
2000-09-30 Bruno Haible <haible@clisp.cons.org> * locale/programs/charmap-dir.h: New file. * locale/programs/charmap-dir.c: New file. * locale/programs/linereader.h (lr_create): New declaration. * locale/programs/linereader.c (lr_create): New function, split out from lr_open. (lr_open): Tailcall lr_create. * locale/programs/locale.c: Include "charmap-dir.h". Don't include <unistd.h>. (xstrdup): New declaration. (more_help): Use xstrdup instead of strdup. (write_locales): Likewise. When encountering a symbolic link, call stat. (write_charmaps): Simplify using the charmap-dir.h functions. Use xstrdup instead of strdup. * locale/programs/charmap.c: Include "charmap-dir.h". Don't include <dirent.h> and <unistd.h>. (cmlr_open): New function. (charmap_read): Use cmlr_open instead of lr_open. Simplify using the charmap-dir.h functions. * locale/Makefile (distribute): Add charmap-dir.h. (lib-modules): Add charmap-dir. (CFLAGS-charmap-dir.c): Set to -Wno-write-strings, because posix_spawn wants a 'char **', not a 'const char **'. * include/spawn.h: New file. 2000-09-30 Bruno Haible <haible@clisp.cons.org> * posix/spawn_faction_init.c: Include "spawn_int.h". (__posix_spawn_file_actions_realloc): Fix second realloc argument. 2000-09-30 Bruno Haible <haible@clisp.cons.org> * locale/programs/config.h (DEFAULT_CHARMAP): Set to ANSI_X3.4-1968. 2000-09-30 Bruno Haible <haible@clisp.cons.org> * wcsmbs/wcwidth.h (__ctype32_wctype): Remove declaration. (internal_wcwidth): Remove the tests for L'\0' and iswprint. * locale/programs/ld-ctype.c (find_idx): If max == NULL, return a pointer to the table entry, without extending the table. (allocate_arrays): Set a width only for characters with 'print' property. Set the width of L'\0' to 0. * locale/C-ctype.c (_nl_C_LC_CTYPE_width): Use default entry 0xff for unprintable characters. Set entry of NUL to 0. 2000-09-30 Bruno Haible <haible@clisp.cons.org> * locale/programs/charmap.c (charmap_read): Avoid redundant tests. Don't forget to call closedir when the filename was found as a code_set_name. 2000-09-30 Bruno Haible <haible@clisp.cons.org> * iconv/gconv.h (__gconv_trans_context_fct): Change first argument's type to 'void *'. 2000-09-30 Bruno Haible <haible@clisp.cons.org> * locale/programs/ld-ctype.c (wctype_table_init): Initialize level1, level2, and level3 as well. (wctype_table_add): Remove a few unnecessary conditionals. 2000-09-30 Ralf Baechle <ralf@gnu.org> * wcsmbs/Versions [libc] (GLIBC_2.0): Add __mbrtowc. 2000-09-30 H.J. Lu <hjl@gnu.org>
-rw-r--r--ChangeLog70
-rw-r--r--localedata/ChangeLog4
-rw-r--r--localedata/SUPPORTED1
-rw-r--r--localedata/charmaps/BIG54
-rw-r--r--localedata/charmaps/GB1803012534
-rw-r--r--localedata/charmaps/ISO-8859-64
-rw-r--r--localedata/charmaps/ISO-8859-84
-rw-r--r--localedata/charmaps/TIS-6206
8 files changed, 12626 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 3db51149bd..806d42df17 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,72 @@
-2000-09-30 H.J. Lu <hjl@gnu.org>
+2000-09-30 Bruno Haible <haible@clisp.cons.org>
+
+ * locale/programs/charmap-dir.h: New file.
+ * locale/programs/charmap-dir.c: New file.
+ * locale/programs/linereader.h (lr_create): New declaration.
+ * locale/programs/linereader.c (lr_create): New function, split out
+ from lr_open.
+ (lr_open): Tailcall lr_create.
+ * locale/programs/locale.c: Include "charmap-dir.h". Don't include
+ <unistd.h>.
+ (xstrdup): New declaration.
+ (more_help): Use xstrdup instead of strdup.
+ (write_locales): Likewise. When encountering a symbolic link, call
+ stat.
+ (write_charmaps): Simplify using the charmap-dir.h functions.
+ Use xstrdup instead of strdup.
+ * locale/programs/charmap.c: Include "charmap-dir.h". Don't include
+ <dirent.h> and <unistd.h>.
+ (cmlr_open): New function.
+ (charmap_read): Use cmlr_open instead of lr_open. Simplify using the
+ charmap-dir.h functions.
+ * locale/Makefile (distribute): Add charmap-dir.h.
+ (lib-modules): Add charmap-dir.
+ (CFLAGS-charmap-dir.c): Set to -Wno-write-strings, because posix_spawn
+ wants a 'char **', not a 'const char **'.
+ * include/spawn.h: New file.
+
+2000-09-30 Bruno Haible <haible@clisp.cons.org>
+
+ * posix/spawn_faction_init.c: Include "spawn_int.h".
+ (__posix_spawn_file_actions_realloc): Fix second realloc argument.
+
+2000-09-30 Bruno Haible <haible@clisp.cons.org>
+
+ * locale/programs/config.h (DEFAULT_CHARMAP): Set to ANSI_X3.4-1968.
+
+2000-09-30 Bruno Haible <haible@clisp.cons.org>
+
+ * wcsmbs/wcwidth.h (__ctype32_wctype): Remove declaration.
+ (internal_wcwidth): Remove the tests for L'\0' and iswprint.
+ * locale/programs/ld-ctype.c (find_idx): If max == NULL, return
+ a pointer to the table entry, without extending the table.
+ (allocate_arrays): Set a width only for characters with 'print'
+ property. Set the width of L'\0' to 0.
+ * locale/C-ctype.c (_nl_C_LC_CTYPE_width): Use default entry 0xff
+ for unprintable characters. Set entry of NUL to 0.
+
+2000-09-30 Bruno Haible <haible@clisp.cons.org>
+
+ * locale/programs/charmap.c (charmap_read): Avoid redundant tests.
+ Don't forget to call closedir when the filename was found as a
+ code_set_name.
+
+2000-09-30 Bruno Haible <haible@clisp.cons.org>
+
+ * iconv/gconv.h (__gconv_trans_context_fct): Change first argument's
+ type to 'void *'.
+
+2000-09-30 Bruno Haible <haible@clisp.cons.org>
+
+ * locale/programs/ld-ctype.c (wctype_table_init): Initialize level1,
+ level2, and level3 as well.
+ (wctype_table_add): Remove a few unnecessary conditionals.
+
+2000-09-30 Ralf Baechle <ralf@gnu.org>
+
+ * wcsmbs/Versions [libc] (GLIBC_2.0): Add __mbrtowc.
+
+2000-09-30 H.J. Lu <hjl@gnu.org>
* sysdeps/ieee754/ldbl-96/s_ceill.c (__ceill): Handle overflow.
* sysdeps/ieee754/ldbl-96/s_floorl.c (__floorl): Likewise.
diff --git a/localedata/ChangeLog b/localedata/ChangeLog
index 398ea8d2e1..0239d64e8e 100644
--- a/localedata/ChangeLog
+++ b/localedata/ChangeLog
@@ -1,3 +1,7 @@
+2000-09-30 Bruno Haible <haible@clisp.cons.org>
+
+ * SUPPORTED: Add ko_KR.UTF-8.
+
2000-10-01 Bruno Haible <haible@clisp.cons.org>
* charmaps/BIG5: Add a width table.
diff --git a/localedata/SUPPORTED b/localedata/SUPPORTED
index 6d1487befe..a01542267b 100644
--- a/localedata/SUPPORTED
+++ b/localedata/SUPPORTED
@@ -99,6 +99,7 @@ iw_IL ISO-8859-8
ja_JP.EUC-JP EUC-JP
kl_GL ISO-8859-1
ko_KR.EUC-KR EUC-KR
+ko_KR.UTF-8 UTF-8
kw_GB ISO-8859-1
lt_LT ISO-8859-13
lv_LV ISO-8859-13
diff --git a/localedata/charmaps/BIG5 b/localedata/charmaps/BIG5
index 08f27c676c..c82615c235 100644
--- a/localedata/charmaps/BIG5
+++ b/localedata/charmaps/BIG5
@@ -14073,3 +14073,7 @@ CHARMAP
% <U256F> /xf9/xfd BOX DRAWINGS LIGHT ARC UP AND LEFT
<U2593> /xf9/xfe DARK SHADE
END CHARMAP
+
+WIDTH
+<U3000>...<U2593> 2
+END WIDTH
diff --git a/localedata/charmaps/GB18030 b/localedata/charmaps/GB18030
index e8df43b4d5..4fbc7e3b62 100644
--- a/localedata/charmaps/GB18030
+++ b/localedata/charmaps/GB18030
@@ -55664,3 +55664,12537 @@ CHARMAP
<UFFFC> /x84/x32/xeb/x34 OBJECT REPLACEMENT CHARACTER
<UFFFD> /x84/x32/xeb/x35 REPLACEMENT CHARACTER
END CHARMAP
+
+% Character width according to Unicode 3.0.
+% Taken from the UTF-8 charmap.
+% Here we use the ellipsis notation only where the Unicode codepoint order
+% agrees with the multibyte encoding lexicographic order.
+WIDTH
+<U0300>...<U0304> 0
+<U0305>...<U030E> 0
+<U030F>...<U0318> 0
+<U0319>...<U0322> 0
+<U0323>...<U032C> 0
+<U032D>...<U0336> 0
+<U0337>...<U0340> 0
+<U0341>...<U034A> 0
+<U034B>...<U034E> 0
+<U0360>...<U0362> 0
+<U0483>...<U0484> 0
+<U0485>...<U0486> 0
+<U0488>...<U0489> 0
+<U0591>...<U0592> 0
+<U0593>...<U059C> 0
+<U059D>...<U05A1> 0
+<U05A3>...<U05A6> 0
+<U05A7>...<U05B0> 0
+<U05B1>...<U05B9> 0
+<U05BB>...<U05BD> 0
+<U05BF> 0
+<U05C1>...<U05C2> 0
+<U05C4> 0
+<U064B>...<U0650> 0
+<U0651>...<U0655> 0
+<U0670> 0
+<U06D6>...<U06DC> 0
+<U06DD>...<U06E4> 0
+<U06E7>...<U06E8> 0
+<U06EA>...<U06ED> 0
+<U070F> 0
+<U0711> 0
+<U0730>...<U0736> 0
+<U0737>...<U0740> 0
+<U0741>...<U074A> 0
+<U07A6>...<U07AE> 0
+<U07AF>...<U07B0> 0
+<U0901>...<U0902> 0
+<U093C> 0
+<U0941>...<U0948> 0
+<U094D> 0
+<U0951>...<U0952> 0
+<U0953>...<U0954> 0
+<U0962>...<U0963> 0
+<U0981> 0
+<U09BC> 0
+<U09C1>...<U09C4> 0
+<U09CD> 0
+<U09E2>...<U09E3> 0
+<U0A02> 0
+<U0A3C> 0
+<U0A41>...<U0A42> 0
+<U0A47>...<U0A48> 0
+<U0A4B>...<U0A4C> 0
+<U0A4D> 0
+<U0A70>...<U0A71> 0
+<U0A81>...<U0A82> 0
+<U0ABC> 0
+<U0AC1>...<U0AC4> 0
+<U0AC5> 0
+<U0AC7>...<U0AC8> 0
+<U0ACD> 0
+<U0B01> 0
+<U0B3C> 0
+<U0B3F> 0
+<U0B41>...<U0B43> 0
+<U0B4D> 0
+<U0B56> 0
+<U0B82> 0
+<U0BC0> 0
+<U0BCD> 0
+<U0C3E>...<U0C40> 0
+<U0C46>...<U0C48> 0
+<U0C4A> 0
+<U0C4B>...<U0C4D> 0
+<U0C55>...<U0C56> 0
+<U0CBF> 0
+<U0CC6> 0
+<U0CCC> 0
+<U0CCD> 0
+<U0D41>...<U0D43> 0
+<U0D4D> 0
+<U0DCA> 0
+<U0DD2>...<U0DD4> 0
+<U0DD6> 0
+<U0E31> 0
+<U0E34> 0
+<U0E35>...<U0E3A> 0
+<U0E47>...<U0E48> 0
+<U0E49>...<U0E4E> 0
+<U0EB1> 0
+<U0EB4>...<U0EB6> 0
+<U0EB7>...<U0EB9> 0
+<U0EBB>...<U0EBC> 0
+<U0EC8>...<U0ECA> 0
+<U0ECB>...<U0ECD> 0
+<U0F18>...<U0F19> 0
+<U0F35> 0
+<U0F37> 0
+<U0F39> 0
+<U0F71>...<U0F74> 0
+<U0F75>...<U0F7E> 0
+<U0F80>...<U0F84> 0
+<U0F86>...<U0F87> 0
+<U0F90>...<U0F92> 0
+<U0F93>...<U0F97> 0
+<U0F99>...<U0F9C> 0
+<U0F9D>...<U0FA6> 0
+<U0FA7>...<U0FB0> 0
+<U0FB1>...<U0FBA> 0
+<U0FBB>...<U0FBC> 0
+<U0FC6> 0
+<U102D>...<U1030> 0
+<U1032> 0
+<U1036>...<U1037> 0
+<U1039> 0
+<U1058>...<U1059> 0
+<U1100>...<U1104> 2
+<U1105>...<U110E> 2
+<U110F>...<U1118> 2
+<U1119>...<U1122> 2
+<U1123>...<U112C> 2
+<U112D>...<U1136> 2
+<U1137>...<U1140> 2
+<U1141>...<U114A> 2
+<U114B>...<U1154> 2
+<U1155>...<U1159> 2
+<U115F> 2
+<U17B7>...<U17BC> 0
+<U17BD> 0
+<U17C6> 0
+<U17C9>...<U17D0> 0
+<U17D1>...<U17D3> 0
+<U180B>...<U180C> 0
+<U180D>...<U180E> 0
+<U18A9> 0
+<U200C>...<U200E> 0
+<U200F> 0
+<U202A>...<U202D> 0
+<U202E> 0
+<U206A>...<U206E> 0
+<U206F> 0
+<U20D0>...<U20D3> 0
+<U20D4>...<U20DD> 0
+<U20DE>...<U20E3> 0
+<U2E80> 2
+<U2E81> 2
+<U2E82>...<U2E83> 2
+<U2E84> 2
+<U2E85>...<U2E87> 2
+<U2E88> 2
+<U2E89>...<U2E8A> 2
+<U2E8B> 2
+<U2E8C> 2
+<U2E8D>...<U2E91> 2
+<U2E92>...<U2E99> 2
+<U2E9B> 2
+<U2E9C>...<U2EA5> 2
+<U2EA6> 2
+<U2EA7> 2
+<U2EA8>...<U2EA9> 2
+<U2EAA> 2
+<U2EAB>...<U2EAD> 2
+<U2EAE> 2
+<U2EAF>...<U2EB2> 2
+<U2EB3> 2
+<U2EB4>...<U2EB5> 2
+<U2EB6>...<U2EB7> 2
+<U2EB8>...<U2EBA> 2
+<U2EBB> 2
+<U2EBC>...<U2EC0> 2
+<U2EC1>...<U2EC9> 2
+<U2ECA> 2
+<U2ECB> 2
+<U2ECC>...<U2ED5> 2
+<U2ED6>...<U2EDF> 2
+<U2EE0>...<U2EE9> 2
+<U2EEA>...<U2EF3> 2
+<U2F00>...<U2F07> 2
+<U2F08>...<U2F11> 2
+<U2F12>...<U2F1B> 2
+<U2F1C>...<U2F25> 2
+<U2F26>...<U2F2F> 2
+<U2F30>...<U2F39> 2
+<U2F3A>...<U2F43> 2
+<U2F44>...<U2F4D> 2
+<U2F4E>...<U2F57> 2
+<U2F58>...<U2F61> 2
+<U2F62>...<U2F6B> 2
+<U2F6C>...<U2F75> 2
+<U2F76>...<U2F7F> 2
+<U2F80>...<U2F89> 2
+<U2F8A>...<U2F93> 2
+<U2F94>...<U2F9D> 2
+<U2F9E>...<U2FA7> 2
+<U2FA8>...<U2FB1> 2
+<U2FB2>...<U2FBB> 2
+<U2FBC>...<U2FC5> 2
+<U2FC6>...<U2FCF> 2
+<U2FD0>...<U2FD5> 2
+<U2FF0>...<U2FFB> 2
+<U3000>...<U3002> 2
+<U3003> 2
+<U3004> 2
+<U3005> 2
+<U3006> 2
+<U3007> 2
+<U3008>...<U3009> 2
+<U300C>...<U300F> 2
+<U3010>...<U3011> 2
+<U3012> 2
+<U3013> 2
+<U3014>...<U3015> 2
+<U3016>...<U3017> 2
+<U3018>...<U3019> 2
+<U301C> 2
+<U301D>...<U301E> 2
+<U301F>...<U3020> 2
+<U3021>...<U3029> 2
+<U302A>...<U302F> 0
+<U3030>...<U3039> 2
+<U303A> 2
+<U303E> 2
+<U3041>...<U3093> 2
+<U3094> 2
+<U3099>...<U309A> 0
+<U309B>...<U309C> 2
+<U309D>...<U309E> 2
+<U30A1>...<U30F6> 2
+<U30F7>...<U30FA> 2
+<U30FB> 2
+<U30FC> 2
+<U30FD>...<U30FE> 2
+<U3105>...<U3129> 2
+<U312A>...<U312C> 2
+<U3131>...<U3136> 2
+<U3137>...<U3140> 2
+<U3141>...<U314A> 2
+<U314B>...<U3154> 2
+<U3155>...<U315E> 2
+<U315F>...<U3168> 2
+<U3169>...<U3172> 2
+<U3173>...<U317C> 2
+<U317D>...<U3186> 2
+<U3187>...<U318E> 2
+<U3190> 2
+<U3191>...<U319A> 2
+<U319B>...<U31A4> 2
+<U31A5>...<U31AE> 2
+<U31AF>...<U31B7> 2
+<U3200>...<U3208> 2
+<U3209>...<U3212> 2
+<U3213>...<U321C> 2
+<U3220>...<U3229> 2
+<U322A>...<U3230> 2
+<U3231> 2
+<U3232>...<U323B> 2
+<U323C>...<U3243> 2
+<U3260>...<U3263> 2
+<U3264>...<U326D> 2
+<U326E>...<U3277> 2
+<U3278>...<U327B> 2
+<U327F>...<U3281> 2
+<U3282>...<U328B> 2
+<U328C>...<U3295> 2
+<U3296>...<U329F> 2
+<U32A0>...<U32A2> 2
+<U32A3> 2
+<U32A4>...<U32AA> 2
+<U32AB>...<U32B0> 2
+<U32C0>...<U32C8> 2
+<U32C9>...<U32CB> 2
+<U32D0>...<U32D2> 2
+<U32D3>...<U32DC> 2
+<U32DD>...<U32E6> 2
+<U32E7>...<U32F0> 2
+<U32F1>...<U32FA> 2
+<U32FB>...<U32FE> 2
+<U3300>...<U3304> 2
+<U3305>...<U330E> 2
+<U330F>...<U3318> 2
+<U3319>...<U3322> 2
+<U3323>...<U332C> 2
+<U332D>...<U3336> 2
+<U3337>...<U3340> 2
+<U3341>...<U334A> 2
+<U334B>...<U3354> 2
+<U3355>...<U335E> 2
+<U335F>...<U3368> 2
+<U3369>...<U3372> 2
+<U3373>...<U3376> 2
+<U337B>...<U337C> 2
+<U337D>...<U3386> 2
+<U3387>...<U338D> 2
+<U338E>...<U338F> 2
+<U3390>...<U3392> 2
+<U3393>...<U339B> 2
+<U339C>...<U339E> 2
+<U339F> 2
+<U33A0> 2
+<U33A1> 2
+<U33A2>...<U33AA> 2
+<U33AB>...<U33B4> 2
+<U33B5>...<U33BE> 2
+<U33BF>...<U33C3> 2
+<U33C4> 2
+<U33C5>...<U33C9> 2
+<U33CA>...<U33CD> 2
+<U33CE> 2
+<U33CF>...<U33D0> 2
+<U33D1>...<U33D2> 2
+<U33D3>...<U33D4> 2
+<U33D5> 2
+<U33D6>...<U33D7> 2
+<U33D8>...<U33DD> 2
+<U33E0>...<U33E1> 2
+<U33E2>...<U33EB> 2
+<U33EC>...<U33F5> 2
+<U33F6>...<U33FE> 2
+<U3400>...<U3409> 2
+<U340A>...<U3413> 2
+<U3414>...<U341D> 2
+<U341E>...<U3427> 2
+<U3428>...<U3431> 2
+<U3432>...<U343B> 2
+<U343C>...<U3445> 2
+<U3446> 2
+<U3447> 2
+<U3448>...<U3450> 2
+<U3451>...<U345A> 2
+<U345B>...<U3464> 2
+<U3465>...<U346E> 2
+<U346F>...<U3472> 2
+<U3473> 2
+<U3474>...<U3479> 2
+<U347A>...<U3483> 2
+<U3484>...<U348D> 2
+<U348E>...<U3497> 2
+<U3498>...<U34A1> 2
+<U34A2>...<U34AB> 2
+<U34AC>...<U34B5> 2
+<U34B6>...<U34BF> 2
+<U34C0>...<U34C9> 2
+<U34CA>...<U34D3> 2
+<U34D4>...<U34DD> 2
+<U34DE>...<U34E7> 2
+<U34E8>...<U34F1> 2
+<U34F2>...<U34FB> 2
+<U34FC>...<U3505> 2
+<U3506>...<U350F> 2
+<U3510>...<U3519> 2
+<U351A>...<U3523> 2
+<U3524>...<U352D> 2
+<U352E>...<U3537> 2
+<U3538>...<U3541> 2
+<U3542>...<U354B> 2
+<U354C>...<U3555> 2
+<U3556>...<U355F> 2
+<U3560>...<U3569> 2
+<U356A>...<U3573> 2
+<U3574>...<U357D> 2
+<U357E>...<U3587> 2
+<U3588>...<U3591> 2
+<U3592>...<U359B> 2
+<U359C>...<U359D> 2
+<U359E> 2
+<U359F>...<U35A6> 2
+<U35A7>...<U35B0> 2
+<U35B1>...<U35BA> 2
+<U35BB>...<U35C4> 2
+<U35C5>...<U35CE> 2
+<U35CF>...<U35D8> 2
+<U35D9>...<U35E2> 2
+<U35E3>...<U35EC> 2
+<U35ED>...<U35F6> 2
+<U35F7>...<U3600> 2
+<U3601>...<U360A> 2
+<U360B>...<U360D> 2
+<U360E> 2
+<U360F>...<U3615> 2
+<U3616>...<U3619> 2
+<U361A> 2
+<U361B>...<U3620> 2
+<U3621>...<U362A> 2
+<U362B>...<U3634> 2
+<U3635>...<U363E> 2
+<U363F>...<U3648> 2
+<U3649>...<U3652> 2
+<U3653>...<U365C> 2
+<U365D>...<U3666> 2
+<U3667>...<U3670> 2
+<U3671>...<U367A> 2
+<U367B>...<U3684> 2
+<U3685>...<U368E> 2
+<U368F>...<U3698> 2
+<U3699>...<U36A2> 2
+<U36A3>...<U36AC> 2
+<U36AD>...<U36B6> 2
+<U36B7>...<U36C0> 2
+<U36C1>...<U36CA> 2
+<U36CB>...<U36D4> 2
+<U36D5>...<U36DE> 2
+<U36DF>...<U36E8> 2
+<U36E9>...<U36F2> 2
+<U36F3>...<U36FC> 2
+<U36FD>...<U3706> 2
+<U3707>...<U3710> 2
+<U3711>...<U371A> 2
+<U371B>...<U3724> 2
+<U3725>...<U372E> 2
+<U372F>...<U3738> 2
+<U3739>...<U3742> 2
+<U3743>...<U374C> 2
+<U374D>...<U3756> 2
+<U3757>...<U3760> 2
+<U3761>...<U376A> 2
+<U376B>...<U3774> 2
+<U3775>...<U377E> 2
+<U377F>...<U3788> 2
+<U3789>...<U3792> 2
+<U3793>...<U379C> 2
+<U379D>...<U37A6> 2
+<U37A7>...<U37B0> 2
+<U37B1>...<U37BA> 2
+<U37BB>...<U37C4> 2
+<U37C5>...<U37CE> 2
+<U37CF>...<U37D8> 2
+<U37D9>...<U37E2> 2
+<U37E3>...<U37EC> 2
+<U37ED>...<U37F6> 2
+<U37F7>...<U3800> 2
+<U3801>...<U380A> 2
+<U380B>...<U3814> 2
+<U3815>...<U381E> 2
+<U381F>...<U3828> 2
+<U3829>...<U3832> 2
+<U3833>...<U383C> 2
+<U383D>...<U3846> 2
+<U3847>...<U3850> 2
+<U3851>...<U385A> 2
+<U385B>...<U3864> 2
+<U3865>...<U386E> 2
+<U386F>...<U3878> 2
+<U3879>...<U3882> 2
+<U3883>...<U388C> 2
+<U388D>...<U3896> 2
+<U3897>...<U38A0> 2
+<U38A1>...<U38AA> 2
+<U38AB>...<U38B4> 2
+<U38B5>...<U38BE> 2
+<U38BF>...<U38C8> 2
+<U38C9>...<U38D2> 2
+<U38D3>...<U38DC> 2
+<U38DD>...<U38E6> 2
+<U38E7>...<U38F0> 2
+<U38F1>...<U38FA> 2
+<U38FB>...<U3904> 2
+<U3905>...<U390E> 2
+<U390F>...<U3917> 2
+<U3918> 2
+<U3919> 2
+<U391A>...<U3923> 2
+<U3924>...<U392D> 2
+<U392E>...<U3937> 2
+<U3938>...<U3941> 2
+<U3942>...<U394B> 2
+<U394C>...<U3955> 2
+<U3956>...<U395F> 2
+<U3960>...<U3969> 2
+<U396A>...<U396D> 2
+<U396E> 2
+<U396F>...<U3974> 2
+<U3975>...<U397E> 2
+<U397F>...<U3988> 2
+<U3989>...<U3992> 2
+<U3993>...<U399C> 2
+<U399D>...<U39A6> 2
+<U39A7>...<U39B0> 2
+<U39B1>...<U39BA> 2
+<U39BB>...<U39C4> 2
+<U39C5>...<U39CE> 2
+<U39CF> 2
+<U39D0> 2
+<U39D1>...<U39DA> 2
+<U39DB>...<U39DE> 2
+<U39DF> 2
+<U39E0>...<U39E5> 2
+<U39E6>...<U39EF> 2
+<U39F0>...<U39F9> 2
+<U39FA>...<U3A03> 2
+<U3A04>...<U3A0D> 2
+<U3A0E>...<U3A17> 2
+<U3A18>...<U3A21> 2
+<U3A22>...<U3A2B> 2
+<U3A2C>...<U3A35> 2
+<U3A36>...<U3A3F> 2
+<U3A40>