├── .gitignore ├── LICENSE ├── README.md ├── bak └── .gitkeep ├── cmap_patch.sh ├── copyright.sh ├── doc ├── ivs.txt └── note │ ├── How_to_make_sfd.txt │ ├── fig.expand_stroke.png │ ├── memo_DisplayOnMery.txt │ └── modify_arrow.md ├── hackgen_generator.sh ├── hinting_post_processing ├── hackgen-bold-ctrl.txt ├── hackgen-regular-ctrl.txt ├── hackgen35-bold-ctrl.txt └── hackgen35-regular-ctrl.txt ├── little_scripts └── extract_dakuon.sh ├── make_hackgen.sh ├── os2_patch.sh └── source ├── GenJyuuGothicL-Monospace-Bold.ttf ├── GenJyuuGothicL-Monospace-Regular.ttf ├── Hack-Bold.ttf ├── Hack-Regular.ttf ├── HackNerdFont-Bold.ttf ├── HackNerdFont-Regular.ttf ├── Ideographic_Space.sfd ├── LICENSE_GenJyuuGothic ├── LICENSE_Hack ├── LICENSE_NerdFonts ├── cmap_format_14_master ├── fix_GenJyuuGothicL-Monospace-Bold.sfd ├── improved_legibility-Bold.sfd ├── improved_legibility-Regular.sfd ├── modify_arrow_Hack-Bold.sfd ├── modify_arrow_Hack-Regular.sfd ├── reiwa-Bold.sfd └── reiwa-Regular.sfd /.gitignore: -------------------------------------------------------------------------------- 1 | bak/* 2 | !bak/.gitkeep 3 | work/ 4 | error.log 5 | build/ 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | # Licensing 2 | 3 | - Source fonts are licensed under SIL OPEN FONT LICENSE Version 1.1. 4 | For more information, see "LICENSE_" file contained in the "source" directory. 5 | - "白源/HackGen" are licensed under SIL OPEN FONT LICENSE Version 1.1. 6 | - Other source code, such as generating scripts, will use the MIT license. 7 | 8 | ## "白源/HackGen" licensing 9 | 10 | Copyright (c) 2019, Yuko OTAWARA. with Reserved Font Name "白源", "HackGen" 11 | 12 | This Font Software is licensed under the SIL Open Font License, Version 1.1. 13 | This license is copied below, and is also available with a FAQ at: 14 | https://scripts.sil.org/OFL 15 | 16 | 17 | ----------------------------------------------------------- 18 | SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 19 | ----------------------------------------------------------- 20 | 21 | PREAMBLE 22 | The goals of the Open Font License (OFL) are to stimulate worldwide 23 | development of collaborative font projects, to support the font creation 24 | efforts of academic and linguistic communities, and to provide a free and 25 | open framework in which fonts may be shared and improved in partnership 26 | with others. 27 | 28 | The OFL allows the licensed fonts to be used, studied, modified and 29 | redistributed freely as long as they are not sold by themselves. The 30 | fonts, including any derivative works, can be bundled, embedded, 31 | redistributed and/or sold with any software provided that any reserved 32 | names are not used by derivative works. The fonts and derivatives, 33 | however, cannot be released under any other type of license. The 34 | requirement for fonts to remain under this license does not apply 35 | to any document created using the fonts or their derivatives. 36 | 37 | DEFINITIONS 38 | "Font Software" refers to the set of files released by the Copyright 39 | Holder(s) under this license and clearly marked as such. This may 40 | include source files, build scripts and documentation. 41 | 42 | "Reserved Font Name" refers to any names specified as such after the 43 | copyright statement(s). 44 | 45 | "Original Version" refers to the collection of Font Software components as 46 | distributed by the Copyright Holder(s). 47 | 48 | "Modified Version" refers to any derivative made by adding to, deleting, 49 | or substituting -- in part or in whole -- any of the components of the 50 | Original Version, by changing formats or by porting the Font Software to a 51 | new environment. 52 | 53 | "Author" refers to any designer, engineer, programmer, technical 54 | writer or other person who contributed to the Font Software. 55 | 56 | PERMISSION & CONDITIONS 57 | Permission is hereby granted, free of charge, to any person obtaining 58 | a copy of the Font Software, to use, study, copy, merge, embed, modify, 59 | redistribute, and sell modified and unmodified copies of the Font 60 | Software, subject to the following conditions: 61 | 62 | 1) Neither the Font Software nor any of its individual components, 63 | in Original or Modified Versions, may be sold by itself. 64 | 65 | 2) Original or Modified Versions of the Font Software may be bundled, 66 | redistributed and/or sold with any software, provided that each copy 67 | contains the above copyright notice and this license. These can be 68 | included either as stand-alone text files, human-readable headers or 69 | in the appropriate machine-readable metadata fields within text or 70 | binary files as long as those fields can be easily viewed by the user. 71 | 72 | 3) No Modified Version of the Font Software may use the Reserved Font 73 | Name(s) unless explicit written permission is granted by the corresponding 74 | Copyright Holder. This restriction only applies to the primary font name as 75 | presented to the users. 76 | 77 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font 78 | Software shall not be used to promote, endorse or advertise any 79 | Modified Version, except to acknowledge the contribution(s) of the 80 | Copyright Holder(s) and the Author(s) or with their explicit written 81 | permission. 82 | 83 | 5) The Font Software, modified or unmodified, in part or in whole, 84 | must be distributed entirely under this license, and must not be 85 | distributed under any other license. The requirement for fonts to 86 | remain under this license does not apply to any document created 87 | using the Font Software. 88 | 89 | TERMINATION 90 | This license becomes null and void if any of the above conditions are 91 | not met. 92 | 93 | DISCLAIMER 94 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 95 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF 96 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT 97 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE 98 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 99 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL 100 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 101 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM 102 | OTHER DEALINGS IN THE FONT SOFTWARE. 103 | 104 | ## Other source licensing (MIT) 105 | 106 | Copyright (c) 2019 Yuko OTAWARA 107 | 108 | Permission is hereby granted, free of charge, to any person obtaining a copy 109 | of this software and associated documentation files (the "Software"), to deal 110 | in the Software without restriction, including without limitation the rights 111 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 112 | copies of the Software, and to permit persons to whom the Software is 113 | furnished to do so, subject to the following conditions: 114 | 115 | The above copyright notice and this permission notice shall be included in 116 | all copies or substantial portions of the Software. 117 | 118 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 119 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 120 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 121 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 122 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 123 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 124 | THE SOFTWARE. 125 | 126 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # プログラミングフォント 白源 (はくげん/HackGen) 2 | 3 | HackGen is a composite font of Hack and GenJyuu-Gothic. 4 | 5 | 白源 (はくげん/HackGen) は、プログラミング向け英文フォント Hack と、源ノ角ゴシックの派生フォント源柔ゴシックを合成したプログラミングフォントです。 6 | 7 | ![image](https://github.com/yuru7/HackGen/assets/13458509/ea0c0dae-58ea-4712-8ed2-570274b87039) 8 | 9 | 2つのフォントをただ合成しただけではなく、一部の独自改変により更なる視認性向上を図っています。 10 | 11 | * 文字幅 半角1:全角2 の正統派な等幅フォント (文字幅 半角3:全角5 バージョンも同梱) 12 | * Hack 由来の読みやすく、しっとりとした印象の英字 13 | * 源柔ゴシック由来の引き締まりつつ、丸ゴシックの風合いのあるカナ文字・漢字 (第一~第四水準漢字まで対応) 14 | * 全角スペースの可視化、パイプ記号 `|` の破断線化 (Ricty Discord インスパイア) 15 | * 英字部分にはヒンティングを付与することで明瞭な表示 16 | * Powerline 記号の表示 17 | * その他、判読性の向上 18 | * 濁点、半濁点を通常より大きくし、表示サイズが小さい場合でも区別しやすくした 19 | * 長音記号 `ー` と漢数字の1 `一` にアクセントを付け区別しやすくした 20 | * カタカナ `ヘ` にアクセントを付け、ひらがなと区別しやすくした 21 | 22 | > 💡 その他、公開中のプログラミングフォント 23 | > - 日本語文字に IBM Plex Sans JP、英数字部分に IBM Plex Mono を使った [**PlemolJP (プレモル ジェイピー)**](https://github.com/yuru7/PlemolJP) 24 | > - 日本語文字にBIZ UDゴシック、英数字部分に JetBrains Mono を使った [**UDEV Gothic**](https://github.com/yuru7/udev-gothic) 25 | > - 日本語文字に源真ゴシック、英数字部分に Fira Mono を使った [**Firge (ファージ)**](https://github.com/yuru7/Firge) 26 | 27 | |**白源 通常版**|**白源 半角3:全角5 版**| 28 | |:------------------------:|:------------------------:| 29 | |![hackgen](https://user-images.githubusercontent.com/13458509/133928601-cb1d3e00-6c4b-4ce5-a945-44ae2baa81e0.png)|![hackgen35](https://user-images.githubusercontent.com/13458509/133928624-77ed3d0b-8e6c-46c1-89e1-3e85f6d0c215.png)| 30 | 31 | ## フォントファミリーの種類 32 | 33 | **※いずれのフォントにも Powerline 記号が含まれています。** 34 | 35 | |**フォント ファミリー**|**説明**| 36 | |:------------:|:---| 37 | |**HackGen**|文字幅比率「半角1:全角2」の通常版の白源。主にASCIIコードの英数字記号に Hack ベースの字体を使い、その他の記号類やかな文字・漢字を源柔ゴシックベースにしている| 38 | |**HackGen Console**|Hack ベースの字体を除外せずに全て適用したフォントファミリー。矢印記号などの多くの記号が半角で表示されるため、コンソールでの利用や記号類は可能な限り半角で表示したい人にオススメ| 39 | |**HackGen35**|通常版の白源の文字幅比率を「半角3:全角5」にしたフォントファミリー。英数字が通常版の白源よりも大きく表示される。日本語が少ない文書やコードの場合にはこちらの方が読みやすいと感じるかもしれない| 40 | |**HackGen35 Console**|HackGen Console の文字幅比率を 半角3:全角5 にしたフォントファミリー| 41 | 42 | |**HackGen 系統**|**HackGen35 系統**| 43 | |:---:|:---:| 44 | |`HackGen`
![hackgen](https://github.com/yuru7/HackGen/raw/image/hikaku_hackgen.png)|`HackGen35`
![hackgen35](https://github.com/yuru7/HackGen/raw/image/hikaku_hackgen35.png)| 45 | |`HackGen Console`
![hackgen console](https://github.com/yuru7/HackGen/raw/image/hikaku_hackgen-console.png)|`HackGen35 Console`
![hackgen35 console](https://github.com/yuru7/HackGen/raw/image/hikaku_hackgen35-console.png)| 46 | 47 | また、追加で提供している `HackGen NF` `HackGen35 NF` フォントファミリーには、[Nerd Fonts](https://www.nerdfonts.com/) を追加合成しており、Font Awesome をはじめとした多くのアイコンフォントが表示できるようになります。 48 | 49 | ## フォントのインストール 50 | 51 | ビルド済みの ttf ファイルは GitHub のリリースページからダウンロードできます。 52 | ダウンロードした ttf ファイルは、各 OS に応じた手順でインストールしてください。 53 | 54 | [Release - HackGen](https://github.com/yuru7/HackGen/releases/latest) 55 | 56 | * `HackGen_バージョン.zip` は従来の HackGen/HackGen35 57 | * `HackGen_NF_バージョン.zip` は従来の HackGen/HackGen35 に [Nerd Fonts](https://www.nerdfonts.com/) を追加合成したもの 58 | 59 | ### Homebrew によるフォントのインストール 60 | 61 | Mac の Homebrew ユーザーは以下のコマンドでもインストールすることができます。 62 | ※Homebrew リポジトリに追加してくださったのはユーザーさんなので、使用方法などをリポジトリオーナーはサポートできません。悪しからずご了承ください。 63 | 64 | ``` 65 | $ brew install font-hackgen 66 | $ brew install font-hackgen-nerd 67 | ``` 68 | 69 | ### Chocolatey によるフォントのインストール 70 | 71 | Windows の [Chocolatey](https://chocolatey.org/) ユーザーは以下のコマンドでもインストールすることができます。 72 | [font-hackgen](https://chocolatey.org/packages/font-hackgen) が Nerd Fonts を含まないフォント、[font-hackgen-nerd](https://chocolatey.org/packages/font-hackgen-nerd) が Nerd Fonts を含むフォントです。 73 | ※インストールに失敗する場合は、[パッケージのリポジトリ](https://github.com/kai2nenobu/chocolatey-packages/)にissueを投稿してください。 74 | 75 | ``` 76 | > choco install font-hackgen 77 | > choco install font-hackgen-nerd 78 | ``` 79 | 80 | ## ビルド環境 81 | 82 | HackGen は以下の環境でビルドしています。 83 | 84 | * OS: Ubuntu 20.04.2 (Kubuntu) 85 | * Tools 86 | * ttfautohint: 1.8.3 87 | * fonttools: 3.44.0 88 | * fontforge: 20201107 89 | 90 | ### ビルドツールのインストール方法と注意点 91 | 92 | * ttfautohint: `sudo apt install ttfautohint` 93 | * fonttools: Python 2 の pip で `sudo pip2 install fonttools` 94 | * fonttools に含まれるサブツール `pyftmerge` と `ttx` をコマンドとして利用しているため、`sudo` を使ってシステム全体で使えるようにする 95 | * Python 3 の pip を使ったものは fonttools 4.13.0 がインストールされる (2020/08/01 時点)。 fonttools 4.13.0 では post テーブルの構造が変わってしまうため、macOS 10.15 にてインストール不可となる ([#12](https://github.com/yuru7/HackGen/issues/12)) 96 | * fontforge: [公式サイト](https://fontforge.org/en-US/downloads/) よりダウンロード 97 | -------------------------------------------------------------------------------- /bak/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuru7/HackGen/6960f16d830ef1b76ccf8d99ed871a6241c28e7d/bak/.gitkeep -------------------------------------------------------------------------------- /cmap_patch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | BASE_DIR=$(cd $(dirname $0); pwd) 4 | PREFIX="$1" 5 | 6 | FONT_PATTERN=${PREFIX}'HackGen[^3]*.ttf' 7 | FONT35_PATTERN=${PREFIX}'HackGen35*.ttf' 8 | 9 | CMAP_MASTER="${BASE_DIR}/source/cmap_format_14_master" 10 | TMP_CMAP_MASTER='tmp_cmap_format_14_master' 11 | TMP_TTX='tmp_cmap_format_14' 12 | GENERATED_CMAP='gen_cmap' 13 | 14 | function buildCmap() { 15 | ttx_path="$1" 16 | # cmapマスタの作成 17 | ( 18 | awk 'NR > 1 {print}' "$CMAP_MASTER" | while read line 19 | do 20 | out_name=$(echo "$line" | awk -F, '{print $4}') 21 | grep_out_name=$(egrep -m1 "name=\"${out_name}[#\"]" "$ttx_path" | perl -pe 's/^.+name="([^"]+?)".+/$1/') 22 | if [ -z "$grep_out_name" ]; then 23 | continue 24 | fi 25 | echo "$line" | awk -F, '{print $1 "," $2 "," $3 "," "'$grep_out_name'"}' 26 | done 27 | ) > "$TMP_CMAP_MASTER" 28 | 29 | # 追加するcmapタグを一時ファイルに書き出し 30 | awk -F, ' 31 | BEGIN {print ""} 32 | NR > 1 && $4 != "" {print ""} 33 | END {print ""} 34 | ' "$TMP_CMAP_MASTER" > "$TMP_TTX" 35 | 36 | # 適用するttxファイルを作成 37 | ( 38 | egrep -v 'cmap_format_14| uvs=' "$ttx_path" | awk '/<\/cmap>/ {exit} {print}' 39 | cat "$TMP_TTX" 40 | awk 'BEGIN {prFlag = 0} // {prFlag = 1} prFlag == 1 {print}' "$ttx_path" 41 | ) > $GENERATED_CMAP 42 | } 43 | 44 | function proc() { 45 | font="$1" 46 | 47 | if [ ! -f "$font" ]; then 48 | echo "File not found: $font" 49 | return 50 | fi 51 | 52 | ttx -t cmap -t post $font 53 | mv ${font} ${font}_orig 54 | buildCmap "${font%%.ttf}.ttx" 55 | ttx -o ${font} -m ${font}_orig $GENERATED_CMAP 56 | } 57 | 58 | echo '### Start cmap_patch ###' 59 | 60 | font_list=$(ls ${BASE_DIR}/${FONT_PATTERN} ${BASE_DIR}/${FONT35_PATTERN}) 61 | 62 | for f in $font_list; do 63 | echo "Start cmap_patch: $f" 64 | ( 65 | # 並列処理時に競合しないように各ファイル名に接頭辞を付ける(これら変数の変更はこのサブシェル下でのみ有効) 66 | file_suffix="_$(basename "${f%%.ttf}")" 67 | TMP_CMAP_MASTER+=$file_suffix 68 | TMP_TTX+=$file_suffix 69 | GENERATED_CMAP+=$file_suffix 70 | 71 | proc "$f" 72 | 73 | ) > "${f}.cmap_patch_output" 2>&1 & 74 | done 75 | 76 | wait 77 | 78 | # 並列処理からの出力内容をまとめて出力 79 | for f in $font_list; do 80 | output_filename="${f}.cmap_patch_output" 81 | echo "$output_filename" | sed -r "s/(.+)\.cmap_patch_output/# cmap_patch output: \1/" 82 | cat "$output_filename" 83 | rm "$output_filename" 84 | done 85 | 86 | rm -f "$GENERATED_CMAP"_* "$TMP_CMAP_MASTER"_* "$TMP_TTX"_* *.ttx *.ttf_orig 87 | -------------------------------------------------------------------------------- /copyright.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | BASE_DIR="$(cd $(dirname $0); pwd)" 4 | 5 | PREFIX="$1" 6 | 7 | FONT_PATTERN=${PREFIX}'HackGen*.ttf' 8 | 9 | COPYRIGHT='[Hack] 10 | Copyright (c) 2018 Source Foundry Authors 11 | 12 | [Gen Jyuu Gothic] 13 | Copyright (c) 2015 JIKASEI FONT KOUBOU 14 | 15 | [Nerd Fonts] 16 | Copyright (c) 2014, Ryan L McIntyre (https://ryanlmcintyre.com). 17 | 18 | [HackGen] 19 | Copyright (c) 2019, Yuko OTAWARA' 20 | 21 | for P in ${BASE_DIR}/${FONT_PATTERN} 22 | do 23 | ttx -t name "$P" 24 | mv "${P%%.ttf}.ttx" ${BASE_DIR}/tmp.ttx 25 | cat ${BASE_DIR}/tmp.ttx | perl -pe "s?###COPYRIGHT###?$COPYRIGHT?" > "${P%%.ttf}.ttx" 26 | 27 | mv "$P" "${P}_orig" 28 | ttx -m "${P}_orig" "${P%%.ttf}.ttx" 29 | done 30 | 31 | rm -f "${BASE_DIR}/"*.ttx "${BASE_DIR}/"*_orig 32 | -------------------------------------------------------------------------------- /doc/ivs.txt: -------------------------------------------------------------------------------- 1 | 、 (U+3001) -> 、︁ (U+3001 U+fe01) 2 | 。 (U+3002) -> 。︁ (U+3002 U+fe01) 3 | 㐂 (U+3402) -> 㐂󠄁 (U+3402 U+e0101) 4 | 㐂 (U+3402) -> 㐂󠄂 (U+3402 U+e0102) 5 | 丈 (U+4e08) -> 丈󠄁 (U+4e08 U+e0101) 6 | 与 (U+4e0e) -> 与󠄁 (U+4e0e U+e0101) 7 | 丙 (U+4e19) -> 丙󠄁 (U+4e19 U+e0101) 8 | 並 (U+4e26) -> 並󠄁 (U+4e26 U+e0101) 9 | 丰 (U+4e30) -> 丰󠄁 (U+4e30 U+e0101) 10 | 丹 (U+4e39) -> 丹󠄁 (U+4e39 U+e0101) 11 | 主 (U+4e3b) -> 主󠄁 (U+4e3b U+e0101) 12 | 乳 (U+4e73) -> 乳󠄁 (U+4e73 U+e0101) 13 | 亡 (U+4ea1) -> 亡󠄁 (U+4ea1 U+e0101) 14 | 交 (U+4ea4) -> 交󠄁 (U+4ea4 U+e0101) 15 | 今 (U+4eca) -> 今󠄁 (U+4eca U+e0101) 16 | 伴 (U+4f34) -> 伴󠄁 (U+4f34 U+e0101) 17 | 住 (U+4f4f) -> 住󠄁 (U+4f4f U+e0101) 18 | 你 (U+4f60) -> 你󠄁 (U+4f60 U+e0101) 19 | 佳 (U+4f73) -> 佳󠄁 (U+4f73 U+e0101) 20 | 併 (U+4f75) -> 併󠄁 (U+4f75 U+e0101) 21 | 使 (U+4f7f) -> 使󠄁 (U+4f7f U+e0101) 22 | 侮 (U+4fae) -> 侮︀ (U+4fae U+fe00) 23 | 侮 (U+4fae) -> 侮󠄁 (U+4fae U+e0101) 24 | 侵 (U+4fb5) -> 侵󠄁 (U+4fb5 U+e0101) 25 | 便 (U+4fbf) -> 便󠄁 (U+4fbf U+e0101) 26 | 値 (U+5024) -> 値󠄁 (U+5024 U+e0101) 27 | 偉 (U+5049) -> 偉󠄁 (U+5049 U+e0101) 28 | 偏 (U+504f) -> 偏󠄁 (U+504f U+e0101) 29 | 偖 (U+5056) -> 偖󠄁 (U+5056 U+e0101) 30 | 健 (U+5065) -> 健󠄁 (U+5065 U+e0101) 31 | 傅 (U+5085) -> 傅󠄁 (U+5085 U+e0101) 32 | 傑 (U+5091) -> 傑󠄁 (U+5091 U+e0101) 33 | 傑 (U+5091) -> 傑󠄂 (U+5091 U+e0102) 34 | 僅 (U+50c5) -> 僅󠄀 (U+50c5 U+e0100) 35 | 僊 (U+50ca) -> 僊󠄁 (U+50ca U+e0101) 36 | 僊 (U+50ca) -> 僊󠄂 (U+50ca U+e0102) 37 | 像 (U+50cf) -> 像󠄁 (U+50cf U+e0101) 38 | 僧 (U+50e7) -> 僧︀ (U+50e7 U+fe00) 39 | 僧 (U+50e7) -> 僧󠄁 (U+50e7 U+e0101) 40 | 僭 (U+50ed) -> 僭󠄁 (U+50ed U+e0101) 41 | 僲 (U+50f2) -> 僲󠄁 (U+50f2 U+e0101) 42 | 儚 (U+511a) -> 儚󠄁 (U+511a U+e0101) 43 | 儲 (U+5132) -> 儲󠄀 (U+5132 U+e0100) 44 | 兆 (U+5146) -> 兆󠄁 (U+5146 U+e0101) 45 | 免 (U+514d) -> 免︀ (U+514d U+fe00) 46 | 免 (U+514d) -> 免󠄁 (U+514d U+e0101) 47 | 兎 (U+514e) -> 兎󠄀 (U+514e U+e0100) 48 | 兔 (U+5154) -> 兔󠄀 (U+5154 U+e0100) 49 | 兔 (U+5154) -> 兔󠄂 (U+5154 U+e0102) 50 | 全 (U+5168) -> 全󠄁 (U+5168 U+e0101) 51 | 八 (U+516b) -> 八󠄁 (U+516b U+e0101) 52 | 公 (U+516c) -> 公󠄁 (U+516c U+e0101) 53 | 具 (U+5177) -> 具󠄁 (U+5177 U+e0101) 54 | 兼 (U+517c) -> 兼󠄁 (U+517c U+e0101) 55 | 冉 (U+5189) -> 冉󠄁 (U+5189 U+e0101) 56 | 再 (U+518d) -> 再󠄀 (U+518d U+e0100) 57 | 冒 (U+5192) -> 冒󠄁 (U+5192 U+e0101) 58 | 冓 (U+5193) -> 冓󠄁 (U+5193 U+e0101) 59 | 冕 (U+5195) -> 冕󠄀 (U+5195 U+e0100) 60 | 冕 (U+5195) -> 冕󠄂 (U+5195 U+e0102) 61 | 冤 (U+51a4) -> 冤󠄀 (U+51a4 U+e0100) 62 | 冬 (U+51ac) -> 冬󠄀 (U+51ac U+e0100) 63 | 冴 (U+51b4) -> 冴󠄁 (U+51b4 U+e0101) 64 | 冴 (U+51b4) -> 冴󠄂 (U+51b4 U+e0102) 65 | 凋 (U+51cb) -> 凋󠄁 (U+51cb U+e0101) 66 | 凛 (U+51db) -> 凛󠄁 (U+51db U+e0101) 67 | 凞 (U+51de) -> 凞︀ (U+51de U+fe00) 68 | 凞 (U+51de) -> 凞󠄁 (U+51de U+e0101) 69 | 凞 (U+51de) -> 凞󠄂 (U+51de U+e0102) 70 | 凞 (U+51de) -> 凞󠄃 (U+51de U+e0103) 71 | 凞 (U+51de) -> 凞󠄄 (U+51de U+e0104) 72 | 凡 (U+51e1) -> 凡󠄁 (U+51e1 U+e0101) 73 | 函 (U+51fd) -> 函󠄁 (U+51fd U+e0101) 74 | 刃 (U+5203) -> 刃󠄁 (U+5203 U+e0101) 75 | 分 (U+5206) -> 分󠄁 (U+5206 U+e0101) 76 | 判 (U+5224) -> 判󠄁 (U+5224 U+e0101) 77 | 券 (U+5238) -> 券󠄁 (U+5238 U+e0101) 78 | 削 (U+524a) -> 削󠄁 (U+524a U+e0101) 79 | 前 (U+524d) -> 前󠄁 (U+524d U+e0101) 80 | 剤 (U+5264) -> 剤󠄁 (U+5264 U+e0101) 81 | 剱 (U+5271) -> 剱󠄁 (U+5271 U+e0101) 82 | 割 (U+5272) -> 割󠄀 (U+5272 U+e0100) 83 | 割 (U+5272) -> 割󠄂 (U+5272 U+e0102) 84 | 創 (U+5275) -> 創󠄁 (U+5275 U+e0101) 85 | 劍 (U+528d) -> 劍󠄁 (U+528d U+e0101) 86 | 勇 (U+52c7) -> 勇󠄁 (U+52c7 U+e0101) 87 | 勉 (U+52c9) -> 勉︀ (U+52c9 U+fe00) 88 | 勉 (U+52c9) -> 勉󠄀 (U+52c9 U+e0100) 89 | 勗 (U+52d7) -> 勗󠄁 (U+52d7 U+e0101) 90 | 勝 (U+52dd) -> 勝󠄁 (U+52dd U+e0101) 91 | 勢 (U+52e2) -> 勢󠄁 (U+52e2 U+e0101) 92 | 勤 (U+52e4) -> 勤︀ (U+52e4 U+fe00) 93 | 勤 (U+52e4) -> 勤󠄁 (U+52e4 U+e0101) 94 | 勺 (U+52fa) -> 勺󠄀 (U+52fa U+e0100) 95 | 匀 (U+5300) -> 匀󠄁 (U+5300 U+e0101) 96 | 匇 (U+5307) -> 匇󠄁 (U+5307 U+e0101) 97 | 匕 (U+5315) -> 匕󠄁 (U+5315 U+e0101) 98 | 化 (U+5316) -> 化󠄁 (U+5316 U+e0101) 99 | 匹 (U+5339) -> 匹󠄁 (U+5339 U+e0101) 100 | 匿 (U+533f) -> 匿󠄁 (U+533f U+e0101) 101 | 區 (U+5340) -> 區󠄁 (U+5340 U+e0101) 102 | 半 (U+534a) -> 半󠄁 (U+534a U+e0101) 103 | 卑 (U+5351) -> 卑︀ (U+5351 U+fe00) 104 | 卑 (U+5351) -> 卑󠄀 (U+5351 U+e0100) 105 | 博 (U+535a) -> 博󠄁 (U+535a U+e0101) 106 | 卥 (U+5365) -> 卥󠄁 (U+5365 U+e0101) 107 | 危 (U+5371) -> 危󠄁 (U+5371 U+e0101) 108 | 卸 (U+5378) -> 卸󠄁 (U+5378 U+e0101) 109 | 卿 (U+537f) -> 卿󠄀 (U+537f U+e0100) 110 | 卿 (U+537f) -> 卿󠄁 (U+537f U+e0101) 111 | 厩 (U+53a9) -> 厩󠄀 (U+53a9 U+e0100) 112 | 厩 (U+53a9) -> 厩󠄁 (U+53a9 U+e0101) 113 | 厩 (U+53a9) -> 厩󠄂 (U+53a9 U+e0102) 114 | 厩 (U+53a9) -> 厩󠄃 (U+53a9 U+e0103) 115 | 厩 (U+53a9) -> 厩󠄄 (U+53a9 U+e0104) 116 | 叉 (U+53c9) -> 叉󠄀 (U+53c9 U+e0100) 117 | 及 (U+53ca) -> 及󠄁 (U+53ca U+e0101) 118 | 収 (U+53ce) -> 収󠄁 (U+53ce U+e0101) 119 | 受 (U+53d7) -> 受󠄁 (U+53d7 U+e0101) 120 | 叛 (U+53db) -> 叛󠄀 (U+53db U+e0100) 121 | 叟 (U+53df) -> 叟󠄀 (U+53df U+e0100) 122 | 叠 (U+53e0) -> 叠󠄁 (U+53e0 U+e0101) 123 | 叱 (U+53f1) -> 叱󠄁 (U+53f1 U+e0101) 124 | 史 (U+53f2) -> 史󠄁 (U+53f2 U+e0101) 125 | 吏 (U+540f) -> 吏󠄁 (U+540f U+e0101) 126 | 吸 (U+5438) -> 吸󠄁 (U+5438 U+e0101) 127 | 呀 (U+5440) -> 呀󠄁 (U+5440 U+e0101) 128 | 呈 (U+5448) -> 呈󠄁 (U+5448 U+e0101) 129 | 周 (U+5468) -> 周󠄀 (U+5468 U+e0100) 130 | 咬 (U+54ac) -> 咬󠄀 (U+54ac U+e0100) 131 | 咲 (U+54b2) -> 咲󠄁 (U+54b2 U+e0101) 132 | 哨 (U+54e8) -> 哨󠄀 (U+54e8 U+e0100) 133 | 唐 (U+5510) -> 唐󠄁 (U+5510 U+e0101) 134 | 唳 (U+5533) -> 唳󠄁 (U+5533 U+e0101) 135 | 唳 (U+5533) -> 唳󠄂 (U+5533 U+e0102) 136 | 唹 (U+5539) -> 唹󠄁 (U+5539 U+e0101) 137 | 啄 (U+5544) -> 啄󠄁 (U+5544 U+e0101) 138 | 商 (U+5546) -> 商󠄁 (U+5546 U+e0101) 139 | 啓 (U+5553) -> 啓󠄁 (U+5553 U+e0101) 140 | 啡 (U+5561) -> 啡󠄁 (U+5561 U+e0101) 141 | 善 (U+5584) -> 善󠄁 (U+5584 U+e0101) 142 | 喜 (U+559c) -> 喜󠄁 (U+559c U+e0101) 143 | 喝 (U+559d) -> 喝︀ (U+559d U+fe00) 144 | 喝 (U+559d) -> 喝󠄁 (U+559d U+e0101) 145 | 喩 (U+55a9) -> 喩󠄁 (U+55a9 U+e0101) 146 | 喩 (U+55a9) -> 喩󠄂 (U+55a9 U+e0102) 147 | 喫 (U+55ab) -> 喫󠄁 (U+55ab U+e0101) 148 | 喫 (U+55ab) -> 喫󠄂 (U+55ab U+e0102) 149 | 喰 (U+55b0) -> 喰󠄀 (U+55b0 U+e0100) 150 | 嗤 (U+55e4) -> 嗤󠄁 (U+55e4 U+e0101) 151 | 嗤 (U+55e4) -> 嗤󠄂 (U+55e4 U+e0102) 152 | 嘅 (U+5605) -> 嘅󠄁 (U+5605 U+e0101) 153 | 嘆 (U+5606) -> 嘆︀ (U+5606 U+fe00) 154 | 嘆 (U+5606) -> 嘆󠄀 (U+5606 U+e0100) 155 | 嘉 (U+5609) -> 嘉󠄁 (U+5609 U+e0101) 156 | 嘲 (U+5632) -> 嘲󠄀 (U+5632 U+e0100) 157 | 噂 (U+5642) -> 噂󠄀 (U+5642 U+e0100) 158 | 噌 (U+564c) -> 噌󠄀 (U+564c U+e0100) 159 | 器 (U+5668) -> 器︀ (U+5668 U+fe00) 160 | 器 (U+5668) -> 器󠄁 (U+5668 U+e0101) 161 | 噴 (U+5674) -> 噴󠄁 (U+5674 U+e0101) 162 | 噸 (U+5678) -> 噸󠄁 (U+5678 U+e0101) 163 | 嚥 (U+56a5) -> 嚥󠄁 (U+56a5 U+e0101) 164 | 嚮 (U+56ae) -> 嚮󠄁 (U+56ae U+e0101) 165 | 嚮 (U+56ae) -> 嚮󠄂 (U+56ae U+e0102) 166 | 嚮 (U+56ae) -> 嚮󠄃 (U+56ae U+e0103) 167 | 囀 (U+56c0) -> 囀󠄀 (U+56c0 U+e0100) 168 | 囁 (U+56c1) -> 囁󠄁 (U+56c1 U+e0101) 169 | 囎 (U+56ce) -> 囎󠄁 (U+56ce U+e0101) 170 | 囮 (U+56ee) -> 囮󠄁 (U+56ee U+e0101) 171 | 圍 (U+570d) -> 圍󠄁 (U+570d U+e0101) 172 | 均 (U+5747) -> 均󠄁 (U+5747 U+e0101) 173 | 坪 (U+576a) -> 坪󠄁 (U+576a U+e0101) 174 | 城 (U+57ce) -> 城󠄀 (U+57ce U+e0100) 175 | 埖 (U+57d6) -> 埖󠄁 (U+57d6 U+e0101) 176 | 埴 (U+57f4) -> 埴󠄁 (U+57f4 U+e0101) 177 | 埴 (U+57f4) -> 埴󠄂 (U+57f4 U+e0102) 178 | 堋 (U+580b) -> 堋󠄁 (U+580b U+e0101) 179 | 堙 (U+5819) -> 堙󠄁 (U+5819 U+e0101) 180 | 堵 (U+5835) -> 堵󠄀 (U+5835 U+e0100) 181 | 堽 (U+583d) -> 堽󠄁 (U+583d U+e0101) 182 | 塀 (U+5840) -> 塀︀ (U+5840 U+fe00) 183 | 塀 (U+5840) -> 塀󠄁 (U+5840 U+e0101) 184 | 塘 (U+5858) -> 塘󠄁 (U+5858 U+e0101) 185 | 塙 (U+5859) -> 塙󠄁 (U+5859 U+e0101) 186 | 塚 (U+585a) -> 塚︀ (U+585a U+fe00) 187 | 塚 (U+585a) -> 塚󠄁 (U+585a U+e0101) 188 | 塚 (U+585a) -> 塚󠄂 (U+585a U+e0102) 189 | 墜 (U+589c) -> 墜󠄁 (U+589c U+e0101) 190 | 墨 (U+58a8) -> 墨︀ (U+58a8 U+fe00) 191 | 墨 (U+58a8) -> 墨󠄀 (U+58a8 U+e0100) 192 | 墫 (U+58ab) -> 墫󠄁 (U+58ab U+e0101) 193 | 夆 (U+5906) -> 夆󠄀 (U+5906 U+e0100) 194 | 夛 (U+591b) -> 夛󠄁 (U+591b U+e0101) 195 | 大 (U+5927) -> 大󠄁 (U+5927 U+e0101) 196 | 奏 (U+594f) -> 奏󠄁 (U+594f U+e0101) 197 | 契 (U+5951) -> 契󠄁 (U+5951 U+e0101) 198 | 契 (U+5951) -> 契󠄂 (U+5951 U+e0102) 199 | 奓 (U+5953) -> 奓󠄁 (U+5953 U+e0101) 200 | 奠 (U+5960) -> 奠󠄁 (U+5960 U+e0101) 201 | 奢 (U+5962) -> 奢󠄁 (U+5962 U+e0101) 202 | 女 (U+5973) -> 女󠄁 (U+5973 U+e0101) 203 | 妄 (U+5984) -> 妄󠄁 (U+5984 U+e0101) 204 | 妥 (U+59a5) -> 妥󠄁 (U+59a5 U+e0101) 205 | 姉 (U+59c9) -> 姉󠄁 (U+59c9 U+e0101) 206 | 姚 (U+59da) -> 姚󠄁 (U+59da U+e0101) 207 | 姬 (U+59ec) -> 姬󠄁 (U+59ec U+e0101) 208 | 姿 (U+59ff) -> 姿󠄁 (U+59ff U+e0101) 209 | 姿 (U+59ff) -> 姿󠄂 (U+59ff U+e0102) 210 | 娜 (U+5a1c) -> 娜󠄁 (U+5a1c U+e0101) 211 | 娩 (U+5a29) -> 娩󠄀 (U+5a29 U+e0100) 212 | 娶 (U+5a36) -> 娶󠄁 (U+5a36 U+e0101) 213 | 婦 (U+5a66) -> 婦󠄁 (U+5a66 U+e0101) 214 | 媛 (U+5a9b) -> 媛󠄁 (U+5a9b U+e0101) 215 | 媾 (U+5abe) -> 媾󠄁 (U+5abe U+e0101) 216 | 媾 (U+5abe) -> 媾󠄂 (U+5abe U+e0102) 217 | 嫂 (U+5ac2) -> 嫂󠄁 (U+5ac2 U+e0101) 218 | 嫌 (U+5acc) -> 嫌󠄁 (U+5acc U+e0101) 219 | 嫚 (U+5ada) -> 嫚󠄁 (U+5ada U+e0101) 220 | 孚 (U+5b5a) -> 孚󠄁 (U+5b5a U+e0101) 221 | 孳 (U+5b73) -> 孳󠄁 (U+5b73 U+e0101) 222 | 孼 (U+5b7c) -> 孼󠄁 (U+5b7c U+e0101) 223 | 害 (U+5bb3) -> 害󠄁 (U+5bb3 U+e0101) 224 | 害 (U+5bb3) -> 害󠄂 (U+5bb3 U+e0102) 225 | 害 (U+5bb3) -> 害󠄃 (U+5bb3 U+e0103) 226 | 宵 (U+5bb5) -> 宵󠄁 (U+5bb5 U+e0101) 227 | 寃 (U+5bc3) -> 寃󠄁 (U+5bc3 U+e0101) 228 | 寒 (U+5bd2) -> 寒󠄁 (U+5bd2 U+e0101) 229 | 寛 (U+5bdb) -> 寛󠄁 (U+5bdb U+e0101) 230 | 寧 (U+5be7) -> 寧󠄀 (U+5be7 U+e0100) 231 | 寨 (U+5be8) -> 寨󠄁 (U+5be8 U+e0101) 232 | 将 (U+5c06) -> 将󠄀 (U+5c06 U+e0100) 233 | 尊 (U+5c0a) -> 尊󠄁 (U+5c0a U+e0101) 234 | 尊 (U+5c0a) -> 尊󠄂 (U+5c0a U+e0102) 235 | 尋 (U+5c0b) -> 尋󠄁 (U+5c0b U+e0101) 236 | 導 (U+5c0e) -> 導󠄁 (U+5c0e U+e0101) 237 | 小 (U+5c0f) -> 小󠄁 (U+5c0f U+e0101) 238 | 尨 (U+5c28) -> 尨󠄁 (U+5c28 U+e0101) 239 | 屑 (U+5c51) -> 屑󠄀 (U+5c51 U+e0100) 240 | 屠 (U+5c60) -> 屠󠄀 (U+5c60 U+e0100) 241 | 層 (U+5c64) -> 層︀ (U+5c64 U+fe00) 242 | 層 (U+5c64) -> 層󠄁 (U+5c64 U+e0101) 243 | 屮 (U+5c6e) -> 屮︀ (U+5c6e U+fe00) 244 | 屮 (U+5c6e) -> 屮󠄀 (U+5c6e U+e0100) 245 | 崩 (U+5d29) -> 崩󠄁 (U+5d29 U+e0101) 246 | 嵎 (U+5d4e) -> 嵎󠄁 (U+5d4e U+e0101) 247 | 嶇 (U+5d87) -> 嶇󠄁 (U+5d87 U+e0101) 248 | 嶲 (U+5db2) -> 嶲󠄀 (U+5db2 U+e0100) 249 | 巉 (U+5dc9) -> 巉󠄁 (U+5dc9 U+e0101) 250 | 巌 (U+5dcc) -> 巌󠄁 (U+5dcc U+e0101) 251 | 巓 (U+5dd3) -> 巓󠄁 (U+5dd3 U+e0101) 252 | 巡 (U+5de1) -> 巡󠄁 (U+5de1 U+e0101) 253 | 工 (U+5de5) -> 工󠄁 (U+5de5 U+e0101) 254 | 巨 (U+5de8) -> 巨󠄁 (U+5de8 U+e0101) 255 | 巷 (U+5df7) -> 巷󠄀 (U+5df7 U+e0100) 256 | 巽 (U+5dfd) -> 巽󠄀 (U+5dfd U+e0100) 257 | 帆 (U+5e06) -> 帆󠄁 (U+5e06 U+e0101) 258 | 帝 (U+5e1d) -> 帝󠄁 (U+5e1d U+e0101) 259 | 帰 (U+5e30) -> 帰󠄁 (U+5e30 U+e0101) 260 | 帽 (U+5e3d) -> 帽󠄁 (U+5e3d U+e0101) 261 | 幃 (U+5e43) -> 幃󠄁 (U+5e43 U+e0101) 262 | 幔 (U+5e54) -> 幔󠄁 (U+5e54 U+e0101) 263 | 幣 (U+5e63) -> 幣󠄁 (U+5e63 U+e0101) 264 | 幤 (U+5e64) -> 幤󠄁 (U+5e64 U+e0101) 265 | 平 (U+5e73) -> 平󠄁 (U+5e73 U+e0101) 266 | 幾 (U+5e7e) -> 幾󠄁 (U+5e7e U+e0101) 267 | 庖 (U+5e96) -> 庖󠄀 (U+5e96 U+e0100) 268 | 座 (U+5ea7) -> 座󠄁 (U+5ea7 U+e0101) 269 | 庭 (U+5ead) -> 庭󠄁 (U+5ead U+e0101) 270 | 廉 (U+5ec9) -> 廉󠄀 (U+5ec9 U+e0100) 271 | 廊 (U+5eca) -> 廊︀ (U+5eca U+fe00) 272 | 廊 (U+5eca) -> 廊󠄁 (U+5eca U+e0101) 273 | 廊 (U+5eca) -> 廊󠄂 (U+5eca U+e0102) 274 | 廋 (U+5ecb) -> 廋󠄁 (U+5ecb U+e0101) 275 | 廏 (U+5ecf) -> 廏󠄁 (U+5ecf U+e0101) 276 | 廐 (U+5ed0) -> 廐󠄁 (U+5ed0 U+e0101) 277 | 廟 (U+5edf) -> 廟󠄀 (U+5edf U+e0100) 278 | 廠 (U+5ee0) -> 廠󠄁 (U+5ee0 U+e0101) 279 | 廣 (U+5ee3) -> 廣󠄁 (U+5ee3 U+e0101) 280 | 廣 (U+5ee3) -> 廣󠄂 (U+5ee3 U+e0102) 281 | 延 (U+5ef6) -> 延󠄁 (U+5ef6 U+e0101) 282 | 延 (U+5ef6) -> 延󠄂 (U+5ef6 U+e0102) 283 | 廷 (U+5ef7) -> 廷󠄁 (U+5ef7 U+e0101) 284 | 建 (U+5efa) -> 建󠄁 (U+5efa U+e0101) 285 | 廻 (U+5efb) -> 廻󠄀 (U+5efb U+e0100) 286 | 弊 (U+5f0a) -> 弊󠄁 (U+5f0a U+e0101) 287 | 弭 (U+5f2d) -> 弭󠄁 (U+5f2d U+e0101) 288 | 弱 (U+5f31) -> 弱󠄁 (U+5f31 U+e0101) 289 | 弸 (U+5f38) -> 弸󠄁 (U+5f38 U+e0101) 290 | 彅 (U+5f45) -> 彅󠄁 (U+5f45 U+e0101) 291 | 彐 (U+5f50) -> 彐󠄁 (U+5f50 U+e0101) 292 | 形 (U+5f62) -> 形󠄁 (U+5f62 U+e0101) 293 | 彩 (U+5f69) -> 彩󠄁 (U+5f69 U+e0101) 294 | 彫 (U+5f6b) -> 彫󠄁 (U+5f6b U+e0101) 295 | 往 (U+5f80) -> 往󠄁 (U+5f80 U+e0101) 296 | 徘 (U+5f98) -> 徘󠄀 (U+5f98 U+e0100) 297 | 御 (U+5fa1) -> 御󠄁 (U+5fa1 U+e0101) 298 | 微 (U+5fae) -> 微󠄁 (U+5fae U+e0101) 299 | 徵 (U+5fb5) -> 徵󠄁 (U+5fb5 U+e0101) 300 | 徽 (U+5fbd) -> 徽󠄀 (U+5fbd U+e0100) 301 | 忍 (U+5fcd) -> 忍󠄁 (U+5fcd U+e0101) 302 | 忘 (U+5fd8) -> 忘󠄁 (U+5fd8 U+e0101) 303 | 忙 (U+5fd9) -> 忙󠄁 (U+5fd9 U+e0101) 304 | 忝 (U+5fdd) -> 忝󠄁 (U+5fdd U+e0101) 305 | 急 (U+6025) -> 急󠄁 (U+6025 U+e0101) 306 | 恐 (U+6050) -> 恐󠄁 (U+6050 U+e0101) 307 | 恢 (U+6062) -> 恢󠄀 (U+6062 U+e0100) 308 | 恢 (U+6062) -> 恢󠄁 (U+6062 U+e0101) 309 | 恥 (U+6065) -> 恥󠄁 (U+6065 U+e0101) 310 | 恵 (U+6075) -> 恵︀ (U+6075 U+fe00) 311 | 恵 (U+6075) -> 恵󠄁 (U+6075 U+e0101) 312 | 悔 (U+6094) -> 悔︀ (U+6094 U+fe00) 313 | 悔 (U+6094) -> 悔󠄀 (U+6094 U+e0100) 314 | 悗 (U+6097) -> 悗󠄁 (U+6097 U+e0101) 315 | 悗 (U+6097) -> 悗󠄂 (U+6097 U+e0102) 316 | 悞 (U+609e) -> 悞󠄀 (U+609e U+e0100) 317 | 悤 (U+60a4) -> 悤󠄁 (U+60a4 U+e0101) 318 | 悲 (U+60b2) -> 悲󠄁 (U+60b2 U+e0101) 319 | 情 (U+60c5) -> 情󠄁 (U+60c5 U+e0101) 320 | 惘 (U+60d8) -> 惘󠄁 (U+60d8 U+e0101) 321 | 愈 (U+6108) -> 愈󠄀 (U+6108 U+e0100) 322 | 愉 (U+6109) -> 愉󠄁 (U+6109 U+e0101) 323 | 意 (U+610f) -> 意󠄁 (U+610f U+e0101) 324 | 愽 (U+613d) -> 愽󠄁 (U+613d U+e0101) 325 | 慈 (U+6148) -> 慈󠄁 (U+6148 U+e0101) 326 | 慌 (U+614c) -> 慌󠄁 (U+614c U+e0101) 327 | 慎 (U+614e) -> 慎󠄁 (U+614e U+e0101) 328 | 慢 (U+6162) -> 慢󠄁 (U+6162 U+e0101) 329 | 慧 (U+6167) -> 慧󠄁 (U+6167 U+e0101) 330 | 慧 (U+6167) -> 慧󠄂 (U+6167 U+e0102) 331 | 慨 (U+6168) -> 慨︀ (U+6168 U+fe00) 332 | 慨 (U+6168) -> 慨󠄁 (U+6168 U+e0101) 333 | 慨 (U+6168) -> 慨󠄂 (U+6168 U+e0102) 334 | 慨 (U+6168) -> 慨󠄃 (U+6168 U+e0103) 335 | 慨 (U+6168) -> 慨󠄄 (U+6168 U+e0104) 336 | 慨 (U+6168) -> 慨󠄅 (U+6168 U+e0105) 337 | 憎 (U+618e) -> 憎︀ (U+618e U+fe00) 338 | 憎 (U+618e) -> 憎󠄀 (U+618e U+e0100) 339 | 憐 (U+6190) -> 憐󠄁 (U+6190 U+e0101) 340 | 憤 (U+61a4) -> 憤󠄁 (U+61a4 U+e0101) 341 | 憲 (U+61b2) -> 憲󠄁 (U+61b2 U+e0101) 342 | 憲 (U+61b2) -> 憲󠄂 (U+61b2 U+e0102) 343 | 懲 (U+61f2) -> 懲︀ (U+61f2 U+fe00) 344 | 懲 (U+61f2) -> 懲󠄁 (U+61f2 U+e0101) 345 | 懲 (U+61f2) -> 懲󠄂 (U+61f2 U+e0102) 346 | 懲 (U+61f2) -> 懲󠄃 (U+61f2 U+e0103) 347 | 懸 (U+61f8) -> 懸󠄁 (U+61f8 U+e0101) 348 | 懾 (U+61fe) -> 懾󠄁 (U+61fe U+e0101) 349 | 成 (U+6210) -> 成󠄁 (U+6210 U+e0101) 350 | 戻 (U+623b) -> 戻󠄁 (U+623b U+e0101) 351 | 房 (U+623f) -> 房󠄁 (U+623f U+e0101) 352 | 所 (U+6240) -> 所󠄁 (U+6240 U+e0101) 353 | 扁 (U+6241) -> 扁󠄀 (U+6241 U+e0100) 354 | 扇 (U+6247) -> 扇󠄁 (U+6247 U+e0101) 355 | 扈 (U+6248) -> 扈󠄁 (U+6248 U+e0101) 356 | 扉 (U+6249) -> 扉󠄁 (U+6249 U+e0101) 357 | 扉 (U+6249) -> 扉󠄂 (U+6249 U+e0102) 358 | 扨 (U+6268) -> 扨󠄁 (U+6268 U+e0101) 359 | 扱 (U+6271) -> 扱󠄁 (U+6271 U+e0101) 360 | 抱 (U+62b1) -> 抱󠄁 (U+62b1 U+e0101) 361 | 拌 (U+62cc) -> 拌󠄁 (U+62cc U+e0101) 362 | 拏 (U+62cf) -> 拏󠄁 (U+62cf U+e0101) 363 | 拐 (U+62d0) -> 拐󠄁 (U+62d0 U+e0101) 364 | 拒 (U+62d2) -> 拒󠄁 (U+62d2 U+e0101) 365 | 拔 (U+62d4) -> 拔󠄀 (U+62d4 U+e0100) 366 | 拳 (U+62f3) -> 拳󠄁 (U+62f3 U+e0101) 367 | 拷 (U+62f7) -> 拷󠄁 (U+62f7 U+e0101) 368 | 挺 (U+633a) -> 挺󠄀 (U+633a U+e0100) 369 | 挽 (U+633d) -> 挽󠄀 (U+633d U+e0100) 370 | 捌 (U+634c) -> 捌󠄁 (U+634c U+e0101) 371 | 捗 (U+6357) -> 捗󠄀 (U+6357 U+e0100) 372 | 捧 (U+6367) -> 捧󠄁 (U+6367 U+e0101) 373 | 捨 (U+6368) -> 捨󠄁 (U+6368 U+e0101) 374 | 捩 (U+6369) -> 捩󠄁 (U+6369 U+e0101) 375 | 据 (U+636e) -> 据󠄁 (U+636e U+e0101) 376 | 捲 (U+6372) -> 捲󠄀 (U+6372 U+e0100) 377 | 掃 (U+6383) -> 掃󠄁 (U+6383 U+e0101) 378 | 授 (U+6388) -> 授󠄁 (U+6388 U+e0101) 379 | 排 (U+6392) -> 排󠄁 (U+6392 U+e0101) 380 | 採 (U+63a1) -> 採󠄁 (U+63a1 U+e0101) 381 | 控 (U+63a7) -> 控󠄁 (U+63a7 U+e0101) 382 | 揃 (U+63c3) -> 揃󠄀 (U+63c3 U+e0100) 383 | 揆 (U+63c6) -> 揆󠄁 (U+63c6 U+e0101) 384 | 援 (U+63f4) -> 援󠄁 (U+63f4 U+e0101) 385 | 搆 (U+6406) -> 搆󠄁 (U+6406 U+e0101) 386 | 搏 (U+640f) -> 搏󠄁 (U+640f U+e0101) 387 | 搜 (U+641c) -> 搜󠄁 (U+641c U+e0101) 388 | 搨 (U+6428) -> 搨󠄁 (U+6428 U+e0101) 389 | 摂 (U+6442) -> 摂󠄁 (U+6442 U+e0101) 390 | 摩 (U+6469) -> 摩󠄁 (U+6469 U+e0101) 391 | 摯 (U+646f) -> 摯󠄀 (U+646f U+e0100) 392 | 摺 (U+647a) -> 摺󠄀 (U+647a U+e0100) 393 | 撰 (U+64b0) -> 撰󠄀 (U+64b0 U+e0100) 394 | 擢 (U+64e2) -> 擢󠄀 (U+64e2 U+e0100) 395 | 擲 (U+64f2) -> 擲󠄁 (U+64f2 U+e0101) 396 | 擶 (U+64f6) -> 擶󠄁 (U+64f6 U+e0101) 397 | 攝 (U+651d) -> 攝󠄁 (U+651d U+e0101) 398 | 敏 (U+654f) -> 敏︀ (U+654f U+fe00) 399 | 敏 (U+654f) -> 敏󠄀 (U+654f U+e0100) 400 | 敝 (U+655d) -> 敝󠄁 (U+655d U+e0101) 401 | 敞 (U+655e) -> 敞󠄁 (U+655e U+e0101) 402 | 敢 (U+6562) -> 敢󠄁 (U+6562 U+e0101) 403 | 敷 (U+6577) -> 敷󠄁 (U+6577 U+e0101) 404 | 斃 (U+6583) -> 斃󠄁 (U+6583 U+e0101) 405 | 文 (U+6587) -> 文󠄁 (U+6587 U+e0101) 406 | 斉 (U+6589) -> 斉󠄁 (U+6589 U+e0101) 407 | 斎 (U+658e) -> 斎󠄁 (U+658e U+e0101) 408 | 斐 (U+6590) -> 斐󠄁 (U+6590 U+e0101) 409 | 斜 (U+659c) -> 斜󠄁 (U+659c U+e0101) 410 | 斧 (U+65a7) -> 斧󠄀 (U+65a7 U+e0100) 411 | 於 (U+65bc) -> 於󠄁 (U+65bc U+e0101) 412 | 旅 (U+65c5) -> 旅󠄁 (U+65c5 U+e0101) 413 | 旟 (U+65df) -> 旟󠄁 (U+65df U+e0101) 414 | 旡 (U+65e1) -> 旡󠄁 (U+65e1 U+e0101) 415 | 既 (U+65e2) -> 既︀ (U+65e2 U+fe00) 416 | 既 (U+65e2) -> 既󠄀 (U+65e2 U+e0100) 417 | 明 (U+660e) -> 明󠄁 (U+660e U+e0101) 418 | 昞 (U+661e) -> 昞󠄁 (U+661e U+e0101) 419 | 晟 (U+665f) -> 晟󠄁 (U+665f U+e0101) 420 | 晟 (U+665f) -> 晟󠄂 (U+665f U+e0102) 421 | 晟 (U+665f) -> 晟󠄃 (U+665f U+e0103) 422 | 晦 (U+6666) -> 晦󠄀 (U+6666 U+e0100) 423 | 晧 (U+6667) -> 晧󠄁 (U+6667 U+e0101) 424 | 晩 (U+6669) -> 晩󠄁 (U+6669 U+e0101) 425 | 普 (U+666e) -> 普󠄁 (U+666e U+e0101) 426 | 晴 (U+6674) -> 晴︀ (U+6674 U+fe00) 427 | 晴 (U+6674) -> 晴󠄀 (U+6674 U+e0100) 428 | 晷 (U+6677) -> 晷󠄁 (U+6677 U+e0101) 429 | 暁 (U+6681) -> 暁󠄁 (U+6681 U+e0101) 430 | 暑 (U+6691) -> 暑︀ (U+6691 U+fe00) 431 | 暑 (U+6691) -> 暑󠄁 (U+6691 U+e0101) 432 | 暖 (U+6696) -> 暖󠄁 (U+6696 U+e0101) 433 | 暗 (U+6697) -> 暗󠄁 (U+6697 U+e0101) 434 | 暵 (U+66b5) -> 暵󠄀 (U+66b5 U+e0100) 435 | 曁 (U+66c1) -> 曁󠄁 (U+66c1 U+e0101) 436 | 曁 (U+66c1) -> 曁󠄂 (U+66c1 U+e0102) 437 | 曙 (U+66d9) -> 曙󠄁 (U+66d9 U+e0101) 438 | 曜 (U+66dc) -> 曜󠄁 (U+66dc U+e0101) 439 | 更 (U+66f4) -> 更󠄁 (U+66f4 U+e0101) 440 | 曵 (U+66f5) -> 曵󠄁 (U+66f5 U+e0101) 441 | 書 (U+66f8) -> 書󠄁 (U+66f8 U+e0101) 442 | 曻 (U+66fb) -> 曻󠄁 (U+66fb U+e0101) 443 | 曼 (U+66fc) -> 曼󠄁 (U+66fc U+e0101) 444 | 最 (U+6700) -> 最󠄁 (U+6700 U+e0101) 445 | 月 (U+6708) -> 月󠄁 (U+6708 U+e0101) 446 | 有 (U+6709) -> 有󠄁 (U+6709 U+e0101) 447 | 朋 (U+670b) -> 朋󠄁 (U+670b U+e0101) 448 | 服 (U+670d) -> 服󠄁 (U+670d U+e0101) 449 | 朕 (U+6715) -> 朕󠄁 (U+6715 U+e0101) 450 | 朕 (U+6715) -> 朕󠄂 (U+6715 U+e0102) 451 | 朗 (U+6717) -> 朗︀ (U+6717 U+fe00) 452 | 朗 (U+6717) -> 朗󠄀 (U+6717 U+e0100) 453 | 朗 (U+6717) -> 朗󠄂 (U+6717 U+e0102) 454 | 朗 (U+6717) -> 朗󠄃 (U+6717 U+e0103) 455 | 望 (U+671b) -> 望󠄁 (U+671b U+e0101) 456 | 望 (U+671b) -> 望󠄂 (U+671b U+e0102) 457 | 朝 (U+671d) -> 朝󠄁 (U+671d U+e0101) 458 | 期 (U+671f) -> 期󠄁 (U+671f U+e0101) 459 | 杓 (U+6753) -> 杓󠄀 (U+6753 U+e0100) 460 | 杖 (U+6756) -> 杖󠄀 (U+6756 U+e0100) 461 | 条 (U+6761) -> 条󠄁 (U+6761 U+e0101) 462 | 松 (U+677e) -> 松󠄁 (U+677e U+e0101) 463 | 枦 (U+67a6) -> 枦󠄁 (U+67a6 U+e0101) 464 | 枩 (U+67a9) -> 枩󠄁 (U+67a9 U+e0101) 465 | 柄 (U+67c4) -> 柄󠄁 (U+67c4 U+e0101) 466 | 柊 (U+67ca) -> 柊󠄁 (U+67ca U+e0101) 467 | 柔 (U+67d4) -> 柔󠄁 (U+67d4 U+e0101) 468 | 柧 (U+67e7) -> 柧󠄁 (U+67e7 U+e0101) 469 | 柱 (U+67f1) -> 柱󠄁 (U+67f1 U+e0101) 470 | 栁 (U+6801) -> 栁󠄁 (U+6801 U+e0101) 471 | 栂 (U+6802) -> 栂󠄁 (U+6802 U+e0101) 472 | 栓 (U+6813) -> 栓󠄁 (U+6813 U+e0101) 473 | 栟 (U+681f) -> 栟󠄁 (U+681f U+e0101) 474 | 校 (U+6821) -> 校󠄁 (U+6821 U+e0101) 475 | 桃 (U+6843) -> 桃󠄁 (U+6843 U+e0101) 476 | 桒 (U+6852) -> 桒󠄀 (U+6852 U+e0100) 477 | 桝 (U+685d) -> 桝󠄁 (U+685d U+e0101) 478 | 桝 (U+685d) -> 桝󠄂 (U+685d U+e0102) 479 | 桺 (U+687a) -> 桺󠄁 (U+687a U+e0101) 480 | 桺 (U+687a) -> 桺󠄂 (U+687a U+e0102) 481 | 梁 (U+6881) -> 梁󠄁 (U+6881 U+e0101) 482 | 梅 (U+6885) -> 梅︀ (U+6885 U+fe00) 483 | 梅 (U+6885) -> 梅󠄀 (U+6885 U+e0100) 484 | 梍 (U+688d) -> 梍󠄁 (U+688d U+e0101) 485 | 梗 (U+6897) -> 梗󠄀 (U+6897 U+e0100) 486 | 梛 (U+689b) -> 梛󠄁 (U+689b U+e0101) 487 | 條 (U+689d) -> 條󠄁 (U+689d U+e0101) 488 | 梢 (U+68a2) -> 梢󠄁 (U+68a2 U+e0101) 489 | 棈 (U+68c8) -> 棈󠄁 (U+68c8 U+e0101) 490 | 棚 (U+68da) -> 棚󠄁 (U+68da U+e0101) 491 | 植 (U+690d) -> 植󠄁 (U+690d U+e0101) 492 | 植 (U+690d) -> 植󠄂 (U+690d U+e0102) 493 | 椰 (U+6930) -> 椰󠄁 (U+6930 U+e0101) 494 | 椽 (U+693d) -> 椽󠄁 (U+693d U+e0101) 495 | 楞 (U+695e) -> 楞󠄁 (U+695e U+e0101) 496 | 楢 (U+6962) -> 楢󠄀 (U+6962 U+e0100) 497 | 楫 (U+696b) -> 楫󠄁 (U+696b U+e0101) 498 | 楯 (U+696f) -> 楯󠄀 (U+696f U+e0100) 499 | 概 (U+6982) -> 概󠄁 (U+6982 U+e0101) 500 | 概 (U+6982) -> 概󠄂 (U+6982 U+e0102) 501 | 概 (U+6982) -> 概󠄃 (U+6982 U+e0103) 502 | 榊 (U+698a) -> 榊󠄀 (U+698a U+e0100) 503 | 榔 (U+6994) -> 榔󠄀 (U+6994 U+e0100) 504 | 榧 (U+69a7) -> 榧󠄁 (U+69a7 U+e0101) 505 | 榻 (U+69bb) -> 榻󠄁 (U+69bb U+e0101) 506 | 槁 (U+69c1) -> 槁󠄁 (U+69c1 U+e0101) 507 | 構 (U+69cb) -> 構󠄁 (U+69cb U+e0101) 508 | 槌 (U+69cc) -> 槌󠄀 (U+69cc U+e0100) 509 | 槙 (U+69d9) -> 槙󠄁 (U+69d9 U+e0101) 510 | 槪 (U+69ea) -> 槪󠄁 (U+69ea U+e0101) 511 | 槾 (U+69fe) -> 槾󠄁 (U+69fe U+e0101) 512 | 樋 (U+6a0b) -> 樋󠄀 (U+6a0b U+e0100) 513 | 樽 (U+6a3d) -> 樽󠄀 (U+6a3d U+e0100) 514 | 橄 (U+6a44) -> 橄󠄁 (U+6a44 U+e0101) 515 | 橕 (U+6a55) -> 橕󠄁 (U+6a55 U+e0101) 516 | 機 (U+6a5f) -> 機󠄁 (U+6a5f U+e0101) 517 | 橳 (U+6a73) -> 橳󠄁 (U+6a73 U+e0101) 518 | 檎 (U+6a8e) -> 檎󠄁 (U+6a8e U+e0101) 519 | 檐 (U+6a90) -> 檐󠄁 (U+6a90 U+e0101) 520 | 檜 (U+6a9c) -> 檜󠄁 (U+6a9c U+e0101) 521 | 櫛 (U+6adb) -> 櫛󠄁 (U+6adb U+e0101) 522 | 櫛 (U+6adb) -> 櫛󠄂 (U+6adb U+e0102) 523 | 欄 (U+6b04) -> 欄︀ (U+6b04 U+fe00) 524 | 欄 (U+6b04) -> 欄󠄀 (U+6b04 U+e0100) 525 | 欝 (U+6b1d) -> 欝󠄁 (U+6b1d U+e0101) 526 | 次 (U+6b21) -> 次󠄁 (U+6b21 U+e0101) 527 | 次 (U+6b21) -> 次󠄂 (U+6b21 U+e0102) 528 | 欤 (U+6b24) -> 欤󠄁 (U+6b24 U+e0101) 529 | 歎 (U+6b4e) -> 歎󠄀 (U+6b4e U+e0100) 530 | 殖 (U+6b96) -> 殖󠄁 (U+6b96 U+e0101) 531 | 殺 (U+6bba) -> 殺︀ (U+6bba U+fe00) 532 | 殺 (U+6bba) -> 殺󠄀 (U+6bba U+e0100) 533 | 殻 (U+6bbb) -> 殻󠄁 (U+6bbb U+e0101) 534 | 氈 (U+6c08) -> 氈󠄁 (U+6c08 U+e0101) 535 | 氈 (U+6c08) -> 氈󠄂 (U+6c08 U+e0102) 536 | 氓 (U+6c13) -> 氓󠄁 (U+6c13 U+e0101) 537 | 永 (U+6c38) -> 永󠄁 (U+6c38 U+e0101) 538 | 氺 (U+6c3a) -> 氺󠄁 (U+6c3a U+e0101) 539 | 汲 (U+6c72) -> 汲󠄀 (U+6c72 U+e0100) 540 | 沪 (U+6caa) -> 沪󠄁 (U+6caa U+e0101) 541 | 沪 (U+6caa) -> 沪󠄂 (U+6caa U+e0102) 542 | 沿 (U+6cbf) -> 沿󠄀 (U+6cbf U+e0100) 543 | 沿 (U+6cbf) -> 沿󠄂 (U+6cbf U+e0102) 544 | 泡 (U+6ce1) -> 泡󠄁 (U+6ce1 U+e0101) 545 | 注 (U+6ce8) -> 注󠄁 (U+6ce8 U+e0101) 546 | 派 (U+6d3e) -> 派󠄁 (U+6d3e U+e0101) 547 | 派 (U+6d3e) -> 派󠄂 (U+6d3e U+e0102) 548 | 浩 (U+6d69) -> 浩󠄁 (U+6d69 U+e0101) 549 | 浮 (U+6d6e) -> 浮󠄁 (U+6d6e U+e0101) 550 | 海 (U+6d77) -> 海︀ (U+6d77 U+fe00) 551 | 海 (U+6d77) -> 海󠄀 (U+6d77 U+e0100) 552 | 浸 (U+6d78) -> 浸󠄁 (U+6d78 U+e0101) 553 | 消 (U+6d88) -> 消󠄁 (U+6d88 U+e0101) 554 | 淤 (U+6de4) -> 淤󠄁 (U+6de4 U+e0101) 555 | 淫 (U+6deb) -> 淫󠄀 (U+6deb U+e0100) 556 | 添 (U+6dfb) -> 添󠄁 (U+6dfb U+e0101) 557 | 済 (U+6e08) -> 済󠄁 (U+6e08 U+e0101) 558 | 渚 (U+6e1a) -> 渚︀ (U+6e1a U+fe00) 559 | 渚 (U+6e1a) -> 渚󠄀 (U+6e1a U+e0100) 560 | 渣 (U+6e23) -> 渣󠄁 (U+6e23 U+e0101) 561 | 渣 (U+6e23) -> 渣󠄂 (U+6e23 U+e0102) 562 | 港 (U+6e2f) -> 港󠄁 (U+6e2f U+e0101) 563 | 湮 (U+6e6e) -> 湮󠄁 (U+6e6e U+e0101) 564 | 湲 (U+6e72) -> 湲󠄁 (U+6e72 U+e0101) 565 | 湾 (U+6e7e) -> 湾󠄁 (U+6e7e U+e0101) 566 | 溝 (U+6e9d) -> 溝󠄁 (U+6e9d U+e0101) 567 | 溢 (U+6ea2) -> 溢󠄀 (U+6ea2 U+e0100) 568 | 溢 (U+6ea2) -> 溢󠄂 (U+6ea2 U+e0102) 569 | 溺 (U+6eba) -> 溺󠄀 (U+6eba U+e0100) 570 | 滋 (U+6ecb) -> 滋󠄁 (U+6ecb U+e0101) 571 | 滋 (U+6ecb) -> 滋󠄂 (U+6ecb U+e0102) 572 | 滕 (U+6ed5) -> 滕󠄁 (U+6ed5 U+e0101) 573 | 滛 (U+6edb) -> 滛󠄁 (U+6edb U+e0101) 574 | 滬 (U+6eec) -> 滬󠄁 (U+6eec U+e0101) 575 | 滾 (U+6efe) -> 滾󠄁 (U+6efe U+e0101) 576 | 漑 (U+6f11) -> 漑󠄁 (U+6f11 U+e0101) 577 | 漑 (U+6f11) -> 漑󠄂 (U+6f11 U+e0102) 578 | 漢 (U+6f22) -> 漢︀ (U+6f22 U+fe00) 579 | 漢 (U+6f22) -> 漢󠄁 (U+6f22 U+e0101) 580 | 漣 (U+6f23) -> 漣󠄁 (U+6f23 U+e0101) 581 | 漾 (U+6f3e) -> 漾󠄁 (U+6f3e U+e0101) 582 | 潑 (U+6f51) -> 潑󠄁 (U+6f51 U+e0101) 583 | 潔 (U+6f54) -> 潔󠄁 (U+6f54 U+e0101) 584 | 潛 (U+6f5b) -> 潛󠄁 (U+6f5b U+e0101) 585 | 潛 (U+6f5b) -> 潛󠄂 (U+6f5b U+e0102) 586 | 潤 (U+6f64) -> 潤󠄁 (U+6f64 U+e0101) 587 | 潮 (U+6f6e) -> 潮󠄀 (U+6f6e U+e0100) 588 | 潴 (U+6f74) -> 潴󠄁 (U+6f74 U+e0101) 589 | 澘 (U+6f98) -> 澘󠄁 (U+6f98 U+e0101) 590 | 濯 (U+6fef) -> 濯󠄁 (U+6fef U+e0101) 591 | 濹 (U+6ff9) -> 濹󠄁 (U+6ff9 U+e0101) 592 | 瀕 (U+7015) -> 瀕󠄀 (U+7015 U+e0100) 593 | 瀛 (U+701b) -> 瀛󠄁 (U+701b U+e0101) 594 | 瀞 (U+701e) -> 瀞󠄀 (U+701e U+e0100) 595 | 瀦 (U+7026) -> 瀦󠄀 (U+7026 U+e0100) 596 | 瀧 (U+7027) -> 瀧󠄁 (U+7027 U+e0101) 597 | 灊 (U+704a) -> 灊󠄁 (U+704a U+e0101) 598 | 灘 (U+7058) -> 灘󠄀 (U+7058 U+e0100) 599 | 灰 (U+7070) -> 灰󠄁 (U+7070 U+e0101) 600 | 灸 (U+7078) -> 灸󠄀 (U+7078 U+e0100) 601 | 灼 (U+707c) -> 灼󠄀 (U+707c U+e0100) 602 | 炭 (U+70ad) -> 炭󠄁 (U+70ad U+e0101) 603 | 煉 (U+7149) -> 煉󠄁 (U+7149 U+e0101) 604 | 煎 (U+714e) -> 煎󠄀 (U+714e U+e0100) 605 | 煒 (U+7152) -> 煒󠄀 (U+7152 U+e0100) 606 | 煙 (U+7159) -> 煙󠄁 (U+7159 U+e0101) 607 | 煢 (U+7162) -> 煢󠄁 (U+7162 U+e0101) 608 | 煮 (U+716e) -> 煮︀ (U+716e U+fe00) 609 | 煮 (U+716e) -> 煮󠄀 (U+716e U+e0100) 610 | 煽 (U+717d) -> 煽󠄀 (U+717d U+e0100) 611 | 煽 (U+717d) -> 煽󠄁 (U+717d U+e0101) 612 | 熔 (U+7194) -> 熔󠄁 (U+7194 U+e0101) 613 | 熳 (U+71b3) -> 熳󠄁 (U+71b3 U+e0101) 614 | 燐 (U+71d0) -> 燐󠄁 (U+71d0 U+e0101) 615 | 燿 (U+71ff) -> 燿󠄁 (U+71ff U+e0101) 616 | 爨 (U+7228) -> 爨󠄀 (U+7228 U+e0100) 617 | 爫 (U+722b) -> 爫︀ (U+722b U+fe00) 618 | 爫 (U+722b) -> 爫󠄁 (U+722b U+e0101) 619 | 爵 (U+7235) -> 爵󠄀 (U+7235 U+e0100) 620 | 爵 (U+7235) -> 爵󠄂 (U+7235 U+e0102) 621 | 父 (U+7236) -> 父󠄁 (U+7236 U+e0101) 622 | 爺 (U+723a) -> 爺󠄀 (U+723a U+e0100) 623 | 爻 (U+723b) -> 爻󠄁 (U+723b U+e0101) 624 | 爾 (U+723e) -> 爾󠄁 (U+723e U+e0101) 625 | 牌 (U+724c) -> 牌󠄀 (U+724c U+e0100) 626 | 牙 (U+7259) -> 牙󠄀 (U+7259 U+e0100) 627 | 狡 (U+72e1) -> 狡󠄀 (U+72e1 U+e0100) 628 | 猜 (U+731c) -> 猜󠄁 (U+731c U+e0101) 629 | 猪 (U+732a) -> 猪︀ (U+732a U+fe00) 630 | 猪 (U+732a) -> 猪󠄀 (U+732a U+e0100) 631 | 猶 (U+7336) -> 猶󠄁 (U+7336 U+e0101) 632 | 猶 (U+7336) -> 猶󠄂 (U+7336 U+e0102) 633 | 猷 (U+7337) -> 猷󠄀 (U+7337 U+e0100) 634 | 猷 (U+7337) -> 猷󠄁 (U+7337 U+e0101) 635 | 率 (U+7387) -> 率󠄁 (U+7387 U+e0101) 636 | 珊 (U+73ca) -> 珊󠄂 (U+73ca U+e0102) 637 | 珎 (U+73ce) -> 珎󠄁 (U+73ce U+e0101) 638 | 珥 (U+73e5) -> 珥󠄁 (U+73e5 U+e0101) 639 | 班 (U+73ed) -> 班󠄁 (U+73ed U+e0101) 640 | 琢 (U+7422) -> 琢︀ (U+7422 U+fe00) 641 | 琢 (U+7422) -> 琢󠄀 (U+7422 U+e0100) 642 | 琲 (U+7432) -> 琲󠄁 (U+7432 U+e0101) 643 | 瑟 (U+745f) -> 瑟󠄁 (U+745f U+e0101) 644 | 瑢 (U+7462) -> 瑢󠄁 (U+7462 U+e0101) 645 | 環 (U+74b0) -> 環󠄁 (U+74b0 U+e0101) 646 | 璽 (U+74bd) -> 璽󠄁 (U+74bd U+e0101) 647 | 瓊 (U+74ca) -> 瓊󠄁 (U+74ca U+e0101) 648 | 瓘 (U+74d8) -> 瓘󠄁 (U+74d8 U+e0101) 649 | 瓜 (U+74dc) -> 瓜󠄁 (U+74dc U+e0101) 650 | 瓠 (U+74e0) -> 瓠󠄁 (U+74e0 U+e0101) 651 | 瓯 (U+74ef) -> 瓯󠄁 (U+74ef U+e0101) 652 | 甄 (U+7504) -> 甄󠄁 (U+7504 U+e0101) 653 | 甌 (U+750c) -> 甌󠄁 (U+750c U+e0101) 654 | 甍 (U+750d) -> 甍󠄁 (U+750d U+e0101) 655 | 甑 (U+7511) -> 甑󠄀 (U+7511 U+e0100) 656 | 甑 (U+7511) -> 甑󠄁 (U+7511 U+e0101) 657 | 甑 (U+7511) -> 甑󠄂 (U+7511 U+e0102) 658 | 甕 (U+7515) -> 甕󠄀 (U+7515 U+e0100) 659 | 甕 (U+7515) -> 甕󠄁 (U+7515 U+e0101) 660 | 甦 (U+7526) -> 甦󠄀 (U+7526 U+e0100) 661 | 畔 (U+7554) -> 畔󠄁 (U+7554 U+e0101) 662 | 畝 (U+755d) -> 畝󠄁 (U+755d U+e0101) 663 | 疼 (U+75bc) -> 疼󠄀 (U+75bc U+e0100) 664 | 病 (U+75c5) -> 病󠄁 (U+75c5 U+e0101) 665 | 瘈 (U+7608) -> 瘈󠄁 (U+7608 U+e0101) 666 | 瘦 (U+7626) -> 瘦󠄁 (U+7626 U+e0101) 667 | 癒 (U+7652) -> 癒󠄁 (U+7652 U+e0101) 668 | 癤 (U+7664) -> 癤󠄁 (U+7664 U+e0101) 669 | 癩 (U+7669) -> 癩󠄁 (U+7669 U+e0101) 670 | 癲 (U+7672) -> 癲󠄁 (U+7672 U+e0101) 671 | 的 (U+7684) -> 的󠄁 (U+7684 U+e0101) 672 | 皓 (U+7693) -> 皓󠄁 (U+7693 U+e0101) 673 | 盆 (U+76c6) -> 盆󠄁 (U+76c6 U+e0101) 674 | 益 (U+76ca) -> 益︀ (U+76ca U+fe00) 675 | 益 (U+76ca) -> 益󠄁 (U+76ca U+e0101) 676 | 盔 (U+76d4) -> 盔󠄁 (U+76d4 U+e0101) 677 | 盛 (U+76db) -> 盛󠄁 (U+76db U+e0101) 678 | 盟 (U+76df) -> 盟󠄁 (U+76df U+e0101) 679 | 盲 (U+76f2) -> 盲󠄁 (U+76f2 U+e0101) 680 | 直 (U+76f4) -> 直󠄁 (U+76f4 U+e0101) 681 | 眞 (U+771e) -> 眞󠄀 (U+771e U+e0100) 682 | 真 (U+771f) -> 真󠄁 (U+771f U+e0101) 683 | 眷 (U+7737) -> 眷󠄁 (U+7737 U+e0101) 684 | 眺 (U+773a) -> 眺󠄁 (U+773a U+e0101) 685 | 睾 (U+777e) -> 睾󠄁 (U+777e U+e0101) 686 | 瞍 (U+778d) -> 瞍󠄁 (U+778d U+e0101) 687 | 瞢 (U+77a2) -> 瞢󠄁 (U+77a2 U+e0101) 688 | 瞥 (U+77a5) -> 瞥󠄀 (U+77a5 U+e0100) 689 | 瞬 (U+77ac) -> 瞬󠄁 (U+77ac U+e0101) 690 | 矩 (U+77e9) -> 矩󠄁 (U+77e9 U+e0101) 691 | 砲 (U+7832) -> 砲󠄁 (U+7832 U+e0101) 692 | 砺 (U+783a) -> 砺󠄁 (U+783a U+e0101) 693 | 硝 (U+785d) -> 硝󠄁 (U+785d U+e0101) 694 | 硬 (U+786c) -> 硬󠄁 (U+786c U+e0101) 695 | 硼 (U+787c) -> 硼󠄁 (U+787c U+e0101) 696 | 碑 (U+7891) -> 碑︀ (U+7891 U+fe00) 697 | 碑 (U+7891) -> 碑󠄀 (U+7891 U+e0100) 698 | 磔 (U+78d4) -> 磔󠄁 (U+78d4 U+e0101) 699 | 磨 (U+78e8) -> 磨󠄁 (U+78e8 U+e0101) 700 | 磯 (U+78ef) -> 磯󠄁 (U+78ef U+e0101) 701 | 礪 (U+792a) -> 礪󠄁 (U+792a U+e0101) 702 | 礴 (U+7934) -> 礴󠄁 (U+7934 U+e0101) 703 | 示 (U+793a) -> 示󠄀 (U+793a U+e0100) 704 | 礼 (U+793c) -> 礼︀ (U+793c U+fe00) 705 | 礼 (U+793c) -> 礼󠄁 (U+793c U+e0101) 706 | 社 (U+793e) -> 社︀ (U+793e U+fe00) 707 | 社 (U+793e) -> 社󠄁 (U+793e U+e0101) 708 | 祀 (U+7940) -> 祀󠄁 (U+7940 U+e0101) 709 | 祁 (U+7941) -> 祁󠄀 (U+7941 U+e0100) 710 | 祇 (U+7947) -> 祇󠄀 (U+7947 U+e0100) 711 | 祈 (U+7948) -> 祈︀ (U+7948 U+fe00) 712 | 祈 (U+7948) -> 祈󠄀 (U+7948 U+e0100) 713 | 祉 (U+7949) -> 祉︀ (U+7949 U+fe00) 714 | 祉 (U+7949) -> 祉󠄁 (U+7949 U+e0101) 715 | 祐 (U+7950) -> 祐︀ (U+7950 U+fe00) 716 | 祐 (U+7950) -> 祐󠄀 (U+7950 U+e0100) 717 | 祓 (U+7953) -> 祓󠄁 (U+7953 U+e0101) 718 | 祓 (U+7953) -> 祓󠄂 (U+7953 U+e0102) 719 | 祖 (U+7956) -> 祖︀ (U+7956 U+fe00) 720 | 祖 (U+7956) -> 祖󠄁 (U+7956 U+e0101) 721 | 祝 (U+795d) -> 祝︀ (U+795d U+fe00) 722 | 祝 (U+795d) -> 祝󠄀 (U+795d U+e0100) 723 | 神 (U+795e) -> 神︀ (U+795e U+fe00) 724 | 神 (U+795e) -> 神󠄀 (U+795e U+e0100) 725 | 祢 (U+7962) -> 祢󠄁 (U+7962 U+e0101) 726 | 祥 (U+7965) -> 祥︀ (U+7965 U+fe00) 727 | 祥 (U+7965) -> 祥󠄀 (U+7965 U+e0100) 728 | 禍 (U+798d) -> 禍︀ (U+798d U+fe00) 729 | 禍 (U+798d) -> 禍󠄀 (U+798d U+e0100) 730 | 禎 (U+798e) -> 禎︀ (U+798e U+fe00) 731 | 禎 (U+798e) -> 禎󠄁 (U+798e U+e0101) 732 | 福 (U+798f) -> 福︀ (U+798f U+fe00) 733 | 福 (U+798f) -> 福󠄁 (U+798f U+e0101) 734 | 禧 (U+79a7) -> 禧󠄁 (U+79a7 U+e0101) 735 | 禮 (U+79ae) -> 禮󠄁 (U+79ae U+e0101) 736 | 禰 (U+79b0) -> 禰󠄀 (U+79b0 U+e0100) 737 | 禱 (U+79b1) -> 禱󠄁 (U+79b1 U+e0101) 738 | 禺 (U+79ba) -> 禺󠄁 (U+79ba U+e0101) 739 | 秤 (U+79e4) -> 秤󠄀 (U+79e4 U+e0100) 740 | 程 (U+7a0b) -> 程󠄁 (U+7a0b U+e0101) 741 | 稗 (U+7a17) -> 稗󠄀 (U+7a17 U+e0100) 742 | 稙 (U+7a19) -> 稙󠄁 (U+7a19 U+e0101) 743 | 稱 (U+7a31) -> 稱󠄁 (U+7a31 U+e0101) 744 | 穀 (U+7a40) -> 穀︀ (U+7a40 U+fe00) 745 | 穀 (U+7a40) -> 穀󠄀 (U+7a40 U+e0100) 746 | 穠 (U+7a60) -> 穠󠄁 (U+7a60 U+e0101) 747 | 穴 (U+7a74) -> 穴󠄁 (U+7a74 U+e0101) 748 | 穴 (U+7a74) -> 穴󠄂 (U+7a74 U+e0102) 749 | 空 (U+7a7a) -> 空󠄁 (U+7a7a U+e0101) 750 | 穿 (U+7a7f) -> 穿󠄀 (U+7a7f U+e0100) 751 | 突 (U+7a81) -> 突︀ (U+7a81 U+fe00) 752 | 突 (U+7a81) -> 突󠄁 (U+7a81 U+e0101) 753 | 窕 (U+7a95) -> 窕󠄁 (U+7a95 U+e0101) 754 | 窗 (U+7a97) -> 窗󠄁 (U+7a97 U+e0101) 755 | 窮 (U+7aae) -> 窮󠄁 (U+7aae U+e0101) 756 | 窾 (U+7abe) -> 窾󠄁 (U+7abe U+e0101) 757 | 竆 (U+7ac6) -> 竆󠄁 (U+7ac6 U+e0101) 758 | 竈 (U+7ac8) -> 竈󠄀 (U+7ac8 U+e0100) 759 | 笈 (U+7b08) -> 笈󠄀 (U+7b08 U+e0100) 760 | 笈 (U+7b08) -> 笈󠄁 (U+7b08 U+e0101) 761 | 筑 (U+7b51) -> 筑󠄁 (U+7b51 U+e0101) 762 | 筵 (U+7b75) -> 筵󠄀 (U+7b75 U+e0100) 763 | 箙 (U+7b99) -> 箙󠄁 (U+7b99 U+e0101) 764 | 箭 (U+7bad) -> 箭󠄀 (U+7bad U+e0100) 765 | 箸 (U+7bb8) -> 箸󠄀 (U+7bb8 U+e0100) 766 | 節 (U+7bc0) -> 節︀ (U+7bc0 U+fe00) 767 | 節 (U+7bc0) -> 節󠄁 (U+7bc0 U+e0101) 768 | 節 (U+7bc0) -> 節󠄂 (U+7bc0 U+e0102) 769 | 篇 (U+7bc7) -> 篇󠄀 (U+7bc7 U+e0100) 770 | 築 (U+7bc9) -> 築󠄁 (U+7bc9 U+e0101) 771 | 篝 (U+7bdd) -> 篝󠄀 (U+7bdd U+e0100) 772 | 篠 (U+7be0) -> 篠󠄁 (U+7be0 U+e0101) 773 | 簔 (U+7c14) -> 簔󠄁 (U+7c14 U+e0101) 774 | 簾 (U+7c3e) -> 簾󠄀 (U+7c3e U+e0100) 775 | 簾 (U+7c3e) -> 簾󠄁 (U+7c3e U+e0101) 776 | 簿 (U+7c3f) -> 簿󠄁 (U+7c3f U+e0101) 777 | 籍 (U+7c4d) -> 籍󠄁 (U+7c4d U+e0101) 778 | 籐 (U+7c50) -> 籐󠄁 (U+7c50 U+e0101) 779 | 籐 (U+7c50) -> 籐󠄂 (U+7c50 U+e0102) 780 | 籘 (U+7c58) -> 籘󠄁 (U+7c58 U+e0101) 781 | 籩 (U+7c69) -> 籩󠄁 (U+7c69 U+e0101) 782 | 籾 (U+7c7e) -> 籾󠄀 (U+7c7e U+e0100) 783 | 籾 (U+7c7e) -> 籾󠄁 (U+7c7e U+e0101) 784 | 粂 (U+7c82) -> 粂󠄀 (U+7c82 U+e0100) 785 | 粉 (U+7c89) -> 粉󠄁 (U+7c89 U+e0101) 786 | 粐 (U+7c90) -> 粐󠄁 (U+7c90 U+e0101) 787 | 粮 (U+7cae) -> 粮󠄁 (U+7cae U+e0101) 788 | 精 (U+7cbe) -> 精︀ (U+7cbe U+fe00) 789 | 精 (U+7cbe) -> 精󠄀 (U+7cbe U+e0100) 790 | 糖 (U+7cd6) -> 糖󠄀 (U+7cd6 U+e0100) 791 | 糲 (U+7cf2) -> 糲󠄁 (U+7cf2 U+e0101) 792 | 約 (U+7d04) -> 約󠄁 (U+7d04 U+e0101) 793 | 紉 (U+7d09) -> 紉󠄁 (U+7d09 U+e0101) 794 | 紋 (U+7d0b) -> 紋󠄁 (U+7d0b U+e0101) 795 | 納 (U+7d0d) -> 納󠄁 (U+7d0d U+e0101) 796 | 級 (U+7d1a) -> 級󠄁 (U+7d1a U+e0101) 797 | 紛 (U+7d1b) -> 紛󠄁 (U+7d1b U+e0101) 798 | 終 (U+7d42) -> 終󠄁 (U+7d42 U+e0101) 799 | 絆 (U+7d46) -> 絆󠄁 (U+7d46 U+e0101) 800 | 絜 (U+7d5c) -> 絜󠄁 (U+7d5c U+e0101) 801 | 絞 (U+7d5e) -> 絞󠄁 (U+7d5e U+e0101) 802 | 絣 (U+7d63) -> 絣󠄁 (U+7d63 U+e0101) 803 | 絳 (U+7d73) -> 絳󠄁 (U+7d73 U+e0101) 804 | 綛 (U+7d9b) -> 綛󠄁 (U+7d9b U+e0101) 805 | 綟 (U+7d9f) -> 綟󠄁 (U+7d9f U+e0101) 806 | 綮 (U+7dae) -> 綮󠄁 (U+7dae U+e0101) 807 | 網 (U+7db2) -> 網󠄁 (U+7db2 U+e0101) 808 | 網 (U+7db2) -> 網󠄂 (U+7db2 U+e0102) 809 | 緋 (U+7dcb) -> 緋󠄁 (U+7dcb U+e0101) 810 | 総 (U+7dcf) -> 総󠄁 (U+7dcf U+e0101) 811 | 緝 (U+7ddd) -> 緝󠄁 (U+7ddd U+e0101) 812 | 編 (U+7de8) -> 編󠄁 (U+7de8 U+e0101) 813 | 緩 (U+7de9) -> 緩󠄁 (U+7de9 U+e0101) 814 | 緯 (U+7def) -> 緯󠄁 (U+7def U+e0101) 815 | 縉 (U+7e09) -> 縉︀ (U+7e09 U+fe00) 816 | 縉 (U+7e09) -> 縉󠄁 (U+7e09 U+e0101) 817 | 縛 (U+7e1b) -> 縛󠄁 (U+7e1b U+e0101) 818 | 縢 (U+7e22) -> 縢󠄁 (U+7e22 U+e0101) 819 | 縢 (U+7e22) -> 縢󠄂 (U+7e22 U+e0102) 820 | 縫 (U+7e2b) -> 縫󠄁 (U+7e2b U+e0101) 821 | 縵 (U+7e35) -> 縵󠄁 (U+7e35 U+e0101) 822 | 縵 (U+7e35) -> 縵󠄂 (U+7e35 U+e0102) 823 | 繁 (U+7e41) -> 繁︀ (U+7e41 U+fe00) 824 | 繁 (U+7e41) -> 繁󠄁 (U+7e41 U+e0101) 825 | 繃 (U+7e43) -> 繃󠄁 (U+7e43 U+e0101) 826 | 繭 (U+7e6d) -> 繭󠄁 (U+7e6d U+e0101) 827 | 續 (U+7e8c) -> 續󠄁 (U+7e8c U+e0101) 828 | 缾 (U+7f3e) -> 缾󠄁 (U+7f3e U+e0101) 829 | 罡 (U+7f61) -> 罡󠄁 (U+7f61 U+e0101) 830 | 罪 (U+7f6a) -> 罪󠄁 (U+7f6a U+e0101) 831 | 置 (U+7f6e) -> 置󠄁 (U+7f6e U+e0101) 832 | 署 (U+7f72) -> 署︀ (U+7f72 U+fe00) 833 | 署 (U+7f72) -> 署󠄀 (U+7f72 U+e0100) 834 | 羀 (U+7f80) -> 羀󠄁 (U+7f80 U+e0101) 835 | 羊 (U+7f8a) -> 羊󠄀 (U+7f8a U+e0100) 836 | 羡 (U+7fa1) -> 羡󠄁 (U+7fa1 U+e0101) 837 | 羮 (U+7fae) -> 羮󠄁 (U+7fae U+e0101) 838 | 羽 (U+7fbd) -> 羽︀ (U+7fbd U+fe00) 839 | 羽 (U+7fbd) -> 羽󠄀 (U+7fbd U+e0100) 840 | 翁 (U+7fc1) -> 翁󠄁 (U+7fc1 U+e0101) 841 | 翁 (U+7fc1) -> 翁󠄂 (U+7fc1 U+e0102) 842 | 翅 (U+7fc5) -> 翅󠄁 (U+7fc5 U+e0101) 843 | 翆 (U+7fc6) -> 翆󠄁 (U+7fc6 U+e0101) 844 | 翌 (U+7fcc) -> 翌󠄁 (U+7fcc U+e0101) 845 | 習 (U+7fd2) -> 習󠄁 (U+7fd2 U+e0101) 846 | 翔 (U+7fd4) -> 翔󠄁 (U+7fd4 U+e0101) 847 | 翠 (U+7fe0) -> 翠󠄁 (U+7fe0 U+e0101) 848 | 翡 (U+7fe1) -> 翡󠄁 (U+7fe1 U+e0101) 849 | 翡 (U+7fe1) -> 翡󠄂 (U+7fe1 U+e0102) 850 | 翩 (U+7fe9) -> 翩󠄁 (U+7fe9 U+e0101) 851 | 翩 (U+7fe9) -> 翩󠄂 (U+7fe9 U+e0102) 852 | 翫 (U+7feb) -> 翫󠄀 (U+7feb U+e0100) 853 | 翰 (U+7ff0) -> 翰󠄀 (U+7ff0 U+e0100) 854 | 翻 (U+7ffb) -> 翻󠄁 (U+7ffb U+e0101) 855 | 翼 (U+7ffc) -> 翼󠄁 (U+7ffc U+e0101) 856 | 翼 (U+7ffc) -> 翼󠄂 (U+7ffc U+e0102) 857 | 耀 (U+8000) -> 耀󠄁 (U+8000 U+e0101) 858 | 考 (U+8003) -> 考󠄁 (U+8003 U+e0101) 859 | 者 (U+8005) -> 者︀ (U+8005 U+fe00) 860 | 者 (U+8005) -> 者󠄁 (U+8005 U+e0101) 861 | 耒 (U+8012) -> 耒󠄁 (U+8012 U+e0101) 862 | 耕 (U+8015) -> 耕󠄁 (U+8015 U+e0101) 863 | 耗 (U+8017) -> 耗󠄁 (U+8017 U+e0101) 864 | 耶 (U+8036) -> 耶󠄁 (U+8036 U+e0101) 865 | 聖 (U+8056) -> 聖󠄁 (U+8056 U+e0101) 866 | 聚 (U+805a) -> 聚󠄁 (U+805a U+e0101) 867 | 聟 (U+805f) -> 聟󠄁 (U+805f U+e0101) 868 | 聡 (U+8061) -> 聡󠄁 (U+8061 U+e0101) 869 | 聯 (U+806f) -> 聯󠄁 (U+806f U+e0101) 870 | 聰 (U+8070) -> 聰󠄁 (U+8070 U+e0101) 871 | 聱 (U+8071) -> 聱󠄁 (U+8071 U+e0101) 872 | 聳 (U+8073) -> 聳󠄁 (U+8073 U+e0101) 873 | 聴 (U+8074) -> 聴󠄁 (U+8074 U+e0101) 874 | 聶 (U+8076) -> 聶󠄁 (U+8076 U+e0101) 875 | 職 (U+8077) -> 職󠄁 (U+8077 U+e0101) 876 | 聾 (U+807e) -> 聾󠄁 (U+807e U+e0101) 877 | 肇 (U+8087) -> 肇󠄁 (U+8087 U+e0101) 878 | 肉 (U+8089) -> 肉󠄁 (U+8089 U+e0101) 879 | 肖 (U+8096) -> 肖󠄁 (U+8096 U+e0101) 880 | 肞 (U+809e) -> 肞󠄁 (U+809e U+e0101) 881 | 肩 (U+80a9) -> 肩󠄁 (U+80a9 U+e0101) 882 | 肺 (U+80ba) -> 肺󠄁 (U+80ba U+e0101) 883 | 胖 (U+80d6) -> 胖󠄁 (U+80d6 U+e0101) 884 | 胞 (U+80de) -> 胞󠄁 (U+80de U+e0101) 885 | 脆 (U+8106) -> 脆󠄁 (U+8106 U+e0101) 886 | 脈 (U+8108) -> 脈󠄁 (U+8108 U+e0101) 887 | 脈 (U+8108) -> 脈󠄂 (U+8108 U+e0102) 888 | 脉 (U+8109) -> 脉󠄁 (U+8109 U+e0101) 889 | 脩 (U+8129) -> 脩󠄁 (U+8129 U+e0101) 890 | 腓 (U+8153) -> 腓󠄁 (U+8153 U+e0101) 891 | 腔 (U+8154) -> 腔󠄁 (U+8154 U+e0101) 892 | 腰 (U+8170) -> 腰󠄁 (U+8170 U+e0101) 893 | 腱 (U+8171) -> 腱󠄀 (U+8171 U+e0100) 894 | 腿 (U+817f) -> 腿󠄀 (U+817f U+e0100) 895 | 膊 (U+818a) -> 膊󠄁 (U+818a U+e0101) 896 | 膵 (U+81b5) -> 膵󠄁 (U+81b5 U+e0101) 897 | 臍 (U+81cd) -> 臍󠄁 (U+81cd U+e0101) 898 | 臭 (U+81ed) -> 臭︀ (U+81ed U+fe00) 899 | 臭 (U+81ed) -> 臭󠄁 (U+81ed U+e0101) 900 | 舀 (U+8200) -> 舀󠄁 (U+8200 U+e0101) 901 | 舌 (U+820c) -> 舌󠄁 (U+820c U+e0101) 902 | 舘 (U+8218) -> 舘︀ (U+8218 U+fe00) 903 | 舘 (U+8218) -> 舘󠄁 (U+8218 U+e0101) 904 | 舛 (U+821b) -> 舛󠄁 (U+821b U+e0101) 905 | 舜 (U+821c) -> 舜󠄁 (U+821c U+e0101) 906 | 舟 (U+821f) -> 舟󠄁 (U+821f U+e0101) 907 | 舮 (U+822e) -> 舮󠄁 (U+822e U+e0101) 908 | 船 (U+8239) -> 船󠄁 (U+8239 U+e0101) 909 | 船 (U+8239) -> 船󠄂 (U+8239 U+e0102) 910 | 艀 (U+8240) -> 艀󠄁 (U+8240 U+e0101) 911 | 艇 (U+8247) -> 艇󠄁 (U+8247 U+e0101) 912 | 艘 (U+8258) -> 艘󠄀 (U+8258 U+e0100) 913 | 艹 (U+8279) -> 艹︀ (U+8279 U+fe00) 914 | 艹 (U+8279) -> 艹︁ (U+8279 U+fe01) 915 | 艹 (U+8279) -> 艹󠄁 (U+8279 U+e0101) 916 | 艹 (U+8279) -> 艹󠄂 (U+8279 U+e0102) 917 | 芍 (U+828d) -> 芍󠄁 (U+828d U+e0101) 918 | 芒 (U+8292) -> 芒󠄀 (U+8292 U+e0100) 919 | 芦 (U+82a6) -> 芦󠄀 (U+82a6 U+e0100) 920 | 花 (U+82b1) -> 花󠄁 (U+82b1 U+e0101) 921 | 芽 (U+82bd) -> 芽󠄀 (U+82bd U+e0100) 922 | 芽 (U+82bd) -> 芽󠄂 (U+82bd U+e0102) 923 | 苅 (U+82c5) -> 苅󠄁 (U+82c5 U+e0101) 924 | 苒 (U+82d2) -> 苒󠄁 (U+82d2 U+e0101) 925 | 苣 (U+82e3) -> 苣󠄁 (U+82e3 U+e0101) 926 | 茣 (U+8323) -> 茣󠄁 (U+8323 U+e0101) 927 | 茨 (U+8328) -> 茨󠄀 (U+8328 U+e0100) 928 | 荒 (U+8352) -> 荒󠄁 (U+8352 U+e0101) 929 | 荵 (U+8375) -> 荵󠄁 (U+8375 U+e0101) 930 | 莽 (U+83bd) -> 莽󠄁 (U+83bd U+e0101) 931 | 菓 (U+83d3) -> 菓󠄁 (U+83d3 U+e0101) 932 | 菔 (U+83d4) -> 菔󠄁 (U+83d4 U+e0101) 933 | 菜 (U+83dc) -> 菜󠄁 (U+83dc U+e0101) 934 | 菟 (U+83df) -> 菟󠄁 (U+83df U+e0101) 935 | 菟 (U+83df) -> 菟󠄂 (U+83df U+e0102) 936 | 菟 (U+83df) -> 菟󠄃 (U+83df U+e0103) 937 | 菲 (U+83f2) -> 菲󠄁 (U+83f2 U+e0101) 938 | 萌 (U+840c) -> 萌󠄁 (U+840c U+e0101) 939 | 萏 (U+840f) -> 萏󠄁 (U+840f U+e0101) 940 | 萠 (U+8420) -> 萠󠄁 (U+8420 U+e0101) 941 | 萢 (U+8422) -> 萢󠄁 (U+8422 U+e0101) 942 | 著 (U+8457) -> 著︀ (U+8457 U+fe00) 943 | 著 (U+8457) -> 著󠄁 (U+8457 U+e0101) 944 | 葛 (U+845b) -> 葛󠄀 (U+845b U+e0100) 945 | 葜 (U+845c) -> 葜󠄁 (U+845c U+e0101) 946 | 葺 (U+847a) -> 葺󠄁 (U+847a U+e0101) 947 | 蓪 (U+84ea) -> 蓪󠄁 (U+84ea U+e0101) 948 | 蓬 (U+84ec) -> 蓬󠄀 (U+84ec U+e0100) 949 | 蓮 (U+84ee) -> 蓮󠄀 (U+84ee U+e0100) 950 | 蓴 (U+84f4) -> 蓴󠄁 (U+84f4 U+e0101) 951 | 蔑 (U+8511) -> 蔑󠄀 (U+8511 U+e0100) 952 | 蔗 (U+8517) -> 蔗󠄁 (U+8517 U+e0101) 953 | 蔽 (U+853d) -> 蔽󠄀 (U+853d U+e0100) 954 | 蔽 (U+853d) -> 蔽󠄂 (U+853d U+e0102) 955 | 蕃 (U+8543) -> 蕃󠄁 (U+8543 U+e0101) 956 | 蕑 (U+8551) -> 蕑󠄁 (U+8551 U+e0101) 957 | 蕕 (U+8555) -> 蕕󠄁 (U+8555 U+e0101) 958 | 蕝 (U+855d) -> 蕝󠄁 (U+855d U+e0101) 959 | 蕣 (U+8563) -> 蕣󠄁 (U+8563 U+e0101) 960 | 薄 (U+8584) -> 薄󠄁 (U+8584 U+e0101) 961 | 薇 (U+8587) -> 薇󠄁 (U+8587 U+e0101) 962 | 薩 (U+85a9) -> 薩󠄀 (U+85a9 U+e0100) 963 | 薯 (U+85af) -> 薯󠄀 (U+85af U+e0100) 964 | 藏 (U+85cf) -> 藏󠄁 (U+85cf U+e0101) 965 | 藕 (U+85d5) -> 藕󠄁 (U+85d5 U+e0101) 966 | 藤 (U+85e4) -> 藤󠄁 (U+85e4 U+e0101) 967 | 藷 (U+85f7) -> 藷󠄀 (U+85f7 U+e0100) 968 | 蘒 (U+8612) -> 蘒︀ (U+8612 U+fe00) 969 | 蘒 (U+8612) -> 蘒󠄁 (U+8612 U+e0101) 970 | 蘒 (U+8612) -> 蘒󠄂 (U+8612 U+e0102) 971 | 蘭 (U+862d) -> 蘭󠄁 (U+862d U+e0101) 972 | 虎 (U+864e) -> 虎󠄁 (U+864e U+e0101) 973 | 虐 (U+8650) -> 虐󠄁 (U+8650 U+e0101) 974 | 虔 (U+8654) -> 虔󠄀 (U+8654 U+e0100) 975 | 虜 (U+865c) -> 虜︀ (U+865c U+fe00) 976 | 虜 (U+865c) -> 虜󠄀 (U+865c U+e0100) 977 | 虞 (U+865e) -> 虞󠄁 (U+865e U+e0101) 978 | 虢 (U+8662) -> 虢󠄁 (U+8662 U+e0101) 979 | 蚊 (U+868a) -> 蚊󠄁 (U+868a U+e0101) 980 | 蛛 (U+86db) -> 蛛󠄁 (U+86db U+e0101) 981 | 蛸 (U+86f8) -> 蛸󠄀 (U+86f8 U+e0100) 982 | 蜃 (U+8703) -> 蜃󠄀 (U+8703 U+e0100) 983 | 蜚 (U+871a) -> 蜚󠄁 (U+871a U+e0101) 984 | 蜷 (U+8737) -> 蜷󠄁 (U+8737 U+e0101) 985 | 蜻 (U+873b) -> 蜻󠄁 (U+873b U+e0101) 986 | 蝕 (U+8755) -> 蝕󠄀 (U+8755 U+e0100) 987 | 蝙 (U+8759) -> 蝙󠄁 (U+8759 U+e0101) 988 | 螂 (U+8782) -> 螂󠄁 (U+8782 U+e0101) 989 | 螣 (U+87a3) -> 螣󠄁 (U+87a3 U+e0101) 990 | 螽 (U+87bd) -> 螽󠄁 (U+87bd U+e0101) 991 | 蟒 (U+87d2) -> 蟒󠄁 (U+87d2 U+e0101) 992 | 蟒 (U+87d2) -> 蟒󠄂 (U+87d2 U+e0102) 993 | 蠃 (U+8803) -> 蠃󠄁 (U+8803 U+e0101) 994 | 蠅 (U+8805) -> 蠅󠄀 (U+8805 U+e0100) 995 | 蠅 (U+8805) -> 蠅󠄁 (U+8805 U+e0101) 996 | 蠎 (U+880e) -> 蠎󠄁 (U+880e U+e0101) 997 | 蠶 (U+8836) -> 蠶󠄁 (U+8836 U+e0101) 998 | 蠶 (U+8836) -> 蠶󠄂 (U+8836 U+e0102) 999 | 衂 (U+8842) -> 衂󠄁 (U+8842 U+e0101) 1000 | 衆 (U+8846) -> 衆󠄁 (U+8846 U+e0101) 1001 | 衋 (U+884b) -> 衋󠄀 (U+884b U+e0100) 1002 | 術 (U+8853) -> 術󠄁 (U+8853 U+e0101) 1003 | 衛 (U+885b) -> 衛󠄁 (U+885b U+e0101) 1004 | 衞 (U+885e) -> 衞󠄁 (U+885e U+e0101) 1005 | 衣 (U+8863) -> 衣󠄁 (U+8863 U+e0101) 1006 | 衷 (U+8877) -> 衷󠄁 (U+8877 U+e0101) 1007 | 袞 (U+889e) -> 袞󠄁 (U+889e U+e0101) 1008 | 裘 (U+88d8) -> 裘󠄁 (U+88d8 U+e0101) 1009 | 裴 (U+88f4) -> 裴󠄁 (U+88f4 U+e0101) 1010 | 褊 (U+890a) -> 褊󠄁 (U+890a U+e0101) 1011 | 褐 (U+8910) -> 褐︀ (U+8910 U+fe00) 1012 | 褐 (U+8910) -> 褐󠄁 (U+8910 U+e0101) 1013 | 褜 (U+891c) -> 褜󠄁 (U+891c U+e0101) 1014 | 褫 (U+892b) -> 褫󠄁 (U+892b U+e0101) 1015 | 褻 (U+893b) -> 褻󠄁 (U+893b U+e0101) 1016 | 襁 (U+8941) -> 襁󠄁 (U+8941 U+e0101) 1017 | 襖 (U+8956) -> 襖󠄀 (U+8956 U+e0100) 1018 | 襪 (U+896a) -> 襪󠄁 (U+896a U+e0101) 1019 | 襯 (U+896f) -> 襯󠄁 (U+896f U+e0101) 1020 | 要 (U+8981) -> 要󠄁 (U+8981 U+e0101) 1021 | 覆 (U+8986) -> 覆󠄁 (U+8986 U+e0101) 1022 | 覇 (U+8987) -> 覇󠄁 (U+8987 U+e0101) 1023 | 視 (U+8996) -> 視︀ (U+8996 U+fe00) 1024 | 視 (U+8996) -> 視󠄁 (U+8996 U+e0101) 1025 | 親 (U+89aa) -> 親󠄁 (U+89aa U+e0101) 1026 | 覯 (U+89af) -> 覯󠄁 (U+89af U+e0101) 1027 | 覽 (U+89bd) -> 覽󠄁 (U+89bd U+e0101) 1028 | 角 (U+89d2) -> 角󠄀 (U+89d2 U+e0100) 1029 | 訊 (U+8a0a) -> 訊󠄀 (U+8a0a U+e0100) 1030 | 訊 (U+8a0a) -> 訊󠄂 (U+8a0a U+e0102) 1031 | 訒 (U+8a12) -> 訒󠄁 (U+8a12 U+e0101) 1032 | 訝 (U+8a1d) -> 訝󠄀 (U+8a1d U+e0100) 1033 | 訝 (U+8a1d) -> 訝󠄁 (U+8a1d U+e0101) 1034 | 訟 (U+8a1f) -> 訟󠄁 (U+8a1f U+e0101) 1035 | 註 (U+8a3b) -> 註󠄀 (U+8a3b U+e0100) 1036 | 評 (U+8a55) -> 評󠄁 (U+8a55 U+e0101) 1037 | 詮 (U+8a6e) -> 詮󠄀 (U+8a6e U+e0100) 1038 | 認 (U+8a8d) -> 認󠄁 (U+8a8d U+e0101) 1039 | 誕 (U+8a95) -> 誕󠄁 (U+8a95 U+e0101) 1040 | 誕 (U+8a95) -> 誕󠄂 (U+8a95 U+e0102) 1041 | 誠 (U+8aa0) -> 誠󠄁 (U+8aa0 U+e0101) 1042 | 誤 (U+8aa4) -> 誤󠄁 (U+8aa4 U+e0101) 1043 | 誹 (U+8ab9) -> 誹󠄀 (U+8ab9 U+e0100) 1044 | 調 (U+8abf) -> 調󠄁 (U+8abf U+e0101) 1045 | 請 (U+8acb) -> 請󠄁 (U+8acb U+e0101) 1046 | 諛 (U+8adb) -> 諛󠄁 (U+8adb U+e0101) 1047 | 諞 (U+8ade) -> 諞󠄁 (U+8ade U+e0101) 1048 | 諭 (U+8aed) -> 諭󠄀 (U+8aed U+e0100) 1049 | 諮 (U+8aee) -> 諮󠄁 (U+8aee U+e0101) 1050 | 諮 (U+8aee) -> 諮󠄂 (U+8aee U+e0102) 1051 | 諸 (U+8af8) -> 諸︀ (U+8af8 U+fe00) 1052 | 諸 (U+8af8) -> 諸󠄀 (U+8af8 U+e0100) 1053 | 諺 (U+8afa) -> 諺󠄀 (U+8afa U+e0100) 1054 | 謁 (U+8b01) -> 謁︀ (U+8b01 U+fe00) 1055 | 謁 (U+8b01) -> 謁󠄀 (U+8b01 U+e0100) 1056 | 謄 (U+8b04) -> 謄󠄁 (U+8b04 U+e0101) 1057 | 謎 (U+8b0e) -> 謎󠄀 (U+8b0e U+e0100) 1058 | 謙 (U+8b19) -> 謙󠄁 (U+8b19 U+e0101) 1059 | 講 (U+8b1b) -> 講󠄁 (U+8b1b U+e0101) 1060 | 謝 (U+8b1d) -> 謝󠄁 (U+8b1d U+e0101) 1061 | 謬 (U+8b2c) -> 謬󠄀 (U+8b2c U+e0100) 1062 | 謹 (U+8b39) -> 謹︀ (U+8b39 U+fe00) 1063 | 謹 (U+8b39) -> 謹󠄀 (U+8b39 U+e0100) 1064 | 謾 (U+8b3e) -> 謾󠄁 (U+8b3e U+e0101) 1065 | 譁 (U+8b41) -> 譁󠄁 (U+8b41 U+e0101) 1066 | 譖 (U+8b56) -> 譖󠄁 (U+8b56 U+e0101) 1067 | 譖 (U+8b56) -> 譖󠄂 (U+8b56 U+e0102) 1068 | 譚 (U+8b5a) -> 譚󠄁 (U+8b5a U+e0101) 1069 | 譜 (U+8b5c) -> 譜󠄁 (U+8b5c U+e0101) 1070 | 譿 (U+8b7f) -> 譿󠄀 (U+8b7f U+e0100) 1071 | 豪 (U+8c6a) -> 豪󠄁 (U+8c6a U+e0101) 1072 | 豹 (U+8c79) -> 豹󠄀 (U+8c79 U+e0100) 1073 | 貛 (U+8c9b) -> 貛󠄁 (U+8c9b U+e0101) 1074 | 負 (U+8ca0) -> 負󠄁 (U+8ca0 U+e0101) 1075 | 負 (U+8ca0) -> 負󠄂 (U+8ca0 U+e0102) 1076 | 貧 (U+8ca7) -> 貧󠄁 (U+8ca7 U+e0101) 1077 | 貨 (U+8ca8) -> 貨󠄁 (U+8ca8 U+e0101) 1078 | 貫 (U+8cab) -> 貫󠄁 (U+8cab U+e0101) 1079 | 資 (U+8cc7) -> 資󠄁 (U+8cc7 U+e0101) 1080 | 資 (U+8cc7) -> 資󠄂 (U+8cc7 U+e0102) 1081 | 賊 (U+8cca) -> 賊󠄁 (U+8cca U+e0101) 1082 | 賊 (U+8cca) -> 賊󠄂 (U+8cca U+e0102) 1083 | 賓 (U+8cd3) -> 賓︀ (U+8cd3 U+fe00) 1084 | 賓 (U+8cd3) -> 賓󠄀 (U+8cd3 U+e0100) 1085 | 賭 (U+8ced) -> 賭󠄀 (U+8ced U+e0100) 1086 | 購 (U+8cfc) -> 購󠄁 (U+8cfc U+e0101) 1087 | 購 (U+8cfc) -> 購󠄂 (U+8cfc U+e0102) 1088 | 贅 (U+8d05) -> 贅󠄁 (U+8d05 U+e0101) 1089 | 贈 (U+8d08) -> 贈︀ (U+8d08 U+fe00) 1090 | 贈 (U+8d08) -> 贈󠄁 (U+8d08 U+e0101) 1091 | 贏 (U+8d0f) -> 贏󠄁 (U+8d0f U+e0101) 1092 | 走 (U+8d70) -> 走󠄁 (U+8d70 U+e0101) 1093 | 赳 (U+8d73) -> 赳󠄁 (U+8d73 U+e0101) 1094 | 起 (U+8d77) -> 起󠄁 (U+8d77 U+e0101) 1095 | 趙 (U+8d99) -> 趙󠄁 (U+8d99 U+e0101) 1096 | 跚 (U+8dda) -> 跚󠄁 (U+8dda U+e0101) 1097 | 距 (U+8ddd) -> 距󠄁 (U+8ddd U+e0101) 1098 | 跳 (U+8df3) -> 跳󠄁 (U+8df3 U+e0101) 1099 | 踉 (U+8e09) -> 踉󠄁 (U+8e09 U+e0101) 1100 | 踴 (U+8e34) -> 踴󠄁 (U+8e34 U+e0101) 1101 | 躍 (U+8e8d) -> 躍󠄁 (U+8e8d U+e0101) 1102 | 躑 (U+8e91) -> 躑󠄁 (U+8e91 U+e0101) 1103 | 躡 (U+8ea1) -> 躡󠄁 (U+8ea1 U+e0101) 1104 | 軌 (U+8ecc) -> 軌󠄁 (U+8ecc U+e0101) 1105 | 軔 (U+8ed4) -> 軔󠄀 (U+8ed4 U+e0100) 1106 | 較 (U+8f03) -> 較󠄁 (U+8f03 U+e0101) 1107 | 輓 (U+8f13) -> 輓󠄁 (U+8f13 U+e0101) 1108 | 輩 (U+8f29) -> 輩󠄁 (U+8f29 U+e0101) 1109 | 輯 (U+8f2f) -> 輯󠄁 (U+8f2f U+e0101) 1110 | 輸 (U+8f38) -> 輸󠄁 (U+8f38 U+e0101) 1111 | 轄 (U+8f44) -> 轄󠄁 (U+8f44 U+e0101) 1112 | 轄 (U+8f44) -> 轄󠄂 (U+8f44 U+e0102) 1113 | 辶 (U+8fb6) -> 辶︀ (U+8fb6 U+fe00) 1114 | 辶 (U+8fb6) -> 辶󠄁 (U+8fb6 U+e0101) 1115 | 辻 (U+8fbb) -> 辻󠄀 (U+8fbb U+e0100) 1116 | 込 (U+8fbc) -> 込󠄁 (U+8fbc U+e0101) 1117 | 辿 (U+8fbf) -> 辿󠄀 (U+8fbf U+e0100) 1118 | 迂 (U+8fc2) -> 迂󠄀 (U+8fc2 U+e0100) 1119 | 迄 (U+8fc4) -> 迄󠄀 (U+8fc4 U+e0100) 1120 | 迅 (U+8fc5) -> 迅󠄁 (U+8fc5 U+e0101) 1121 | 迅 (U+8fc5) -> 迅󠄂 (U+8fc5 U+e0102) 1122 | 迆 (U+8fc6) -> 迆󠄁 (U+8fc6 U+e0101) 1123 | 迎 (U+8fce) -> 迎󠄁 (U+8fce U+e0101) 1124 | 近 (U+8fd1) -> 近󠄁 (U+8fd1 U+e0101) 1125 | 返 (U+8fd4) -> 返󠄁 (U+8fd4 U+e0101) 1126 | 返 (U+8fd4) -> 返󠄂 (U+8fd4 U+e0102) 1127 | 迦 (U+8fe6) -> 迦󠄀 (U+8fe6 U+e0100) 1128 | 迩 (U+8fe9) -> 迩󠄁 (U+8fe9 U+e0101) 1129 | 迪 (U+8fea) -> 迪󠄁 (U+8fea U+e0101) 1130 | 迫 (U+8feb) -> 迫󠄁 (U+8feb U+e0101) 1131 | 迭 (U+8fed) -> 迭󠄁 (U+8fed U+e0101) 1132 | 迯 (U+8fef) -> 迯󠄁 (U+8fef U+e0101) 1133 | 述 (U+8ff0) -> 述󠄁 (U+8ff0 U+e0101) 1134 | 迶 (U+8ff6) -> 迶󠄁 (U+8ff6 U+e0101) 1135 | 迷 (U+8ff7) -> 迷󠄁 (U+8ff7 U+e0101) 1136 | 迺 (U+8ffa) -> 迺󠄁 (U+8ffa U+e0101) 1137 | 追 (U+8ffd) -> 追󠄁 (U+8ffd U+e0101) 1138 | 退 (U+9000) -> 退󠄁 (U+9000 U+e0101) 1139 | 送 (U+9001) -> 送󠄁 (U+9001 U+e0101) 1140 | 逃 (U+9003) -> 逃󠄁 (U+9003 U+e0101) 1141 | 逃 (U+9003) -> 逃󠄂 (U+9003 U+e0102) 1142 | 逆 (U+9006) -> 逆󠄁 (U+9006 U+e0101) 1143 | 逎 (U+900e) -> 逎󠄁 (U+900e U+e0101) 1144 | 透 (U+900f) -> 透󠄁 (U+900f U+e0101) 1145 | 逐 (U+9010) -> 逐󠄁 (U+9010 U+e0101) 1146 | 途 (U+9014) -> 途󠄁 (U+9014 U+e0101) 1147 | 逗 (U+9017) -> 逗󠄀 (U+9017 U+e0100) 1148 | 這 (U+9019) -> 這󠄀 (U+9019 U+e0100) 1149 | 通 (U+901a) -> 通󠄁 (U+901a U+e0101) 1150 | 逝 (U+901d) -> 逝󠄁 (U+901d U+e0101) 1151 | 逞 (U+901e) -> 逞󠄁 (U+901e U+e0101) 1152 | 速 (U+901f) -> 速󠄁 (U+901f U+e0101) 1153 | 造 (U+9020) -> 造󠄁 (U+9020 U+e0101) 1154 | 逢 (U+9022) -> 逢󠄀 (U+9022 U+e0100) 1155 | 逢 (U+9022) -> 逢󠄂 (U+9022 U+e0102) 1156 | 連 (U+9023) -> 連󠄀 (U+9023 U+e0100) 1157 | 逮 (U+902e) -> 逮󠄁 (U+902e U+e0101) 1158 | 週 (U+9031) -> 週󠄁 (U+9031 U+e0101) 1159 | 進 (U+9032) -> 進󠄁 (U+9032 U+e0101) 1160 | 逵 (U+9035) -> 逵󠄁 (U+9035 U+e0101) 1161 | 逸 (U+9038) -> 逸︀ (U+9038 U+fe00) 1162 | 逸 (U+9038) -> 逸︁ (U+9038 U+fe01) 1163 | 逸 (U+9038) -> 逸󠄁 (U+9038 U+e0101) 1164 | 逸 (U+9038) -> 逸󠄂 (U+9038 U+e0102) 1165 | 逹 (U+9039) -> 逹󠄁 (U+9039 U+e0101) 1166 | 逼 (U+903c) -> 逼󠄀 (U+903c U+e0100) 1167 | 遁 (U+9041) -> 遁󠄀 (U+9041 U+e0100) 1168 | 遁 (U+9041) -> 遁󠄁 (U+9041 U+e0101) 1169 | 遂 (U+9042) -> 遂󠄁 (U+9042 U+e0101) 1170 | 遂 (U+9042) -> 遂󠄂 (U+9042 U+e0102) 1171 | 遇 (U+9047) -> 遇󠄁 (U+9047 U+e0101) 1172 | 遊 (U+904a) -> 遊󠄁 (U+904a U+e0101) 1173 | 運 (U+904b) -> 運󠄁 (U+904b U+e0101) 1174 | 遍 (U+904d) -> 遍󠄁 (U+904d U+e0101) 1175 | 過 (U+904e) -> 過󠄁 (U+904e U+e0101) 1176 | 遐 (U+9050) -> 遐󠄁 (U+9050 U+e0101) 1177 | 遒 (U+9052) -> 遒󠄁 (U+9052 U+e0101) 1178 | 道 (U+9053) -> 道󠄁 (U+9053 U+e0101) 1179 | 達 (U+9054) -> 達󠄁 (U+9054 U+e0101) 1180 | 違 (U+9055) -> 違󠄁 (U+9055 U+e0101) 1181 | 違 (U+9055) -> 違󠄂 (U+9055 U+e0102) 1182 | 遘 (U+9058) -> 遘󠄁 (U+9058 U+e0101) 1183 | 遜 (U+905c) -> 遜󠄀 (U+905c U+e0100) 1184 | 遠 (U+9060) -> 遠󠄁 (U+9060 U+e0101) 1185 | 遡 (U+9061) -> 遡󠄀 (U+9061 U+e0100) 1186 | 遣 (U+9063) -> 遣󠄁 (U+9063 U+e0101) 1187 | 適 (U+9069) -> 適󠄁 (U+9069 U+e0101) 1188 | 遭 (U+906d) -> 遭󠄁 (U+906d U+e0101) 1189 | 遮 (U+906e) -> 遮󠄁 (U+906e U+e0101) 1190 | 遵 (U+9075) -> 遵󠄁 (U+9075 U+e0101) 1191 | 遵 (U+9075) -> 遵󠄂 (U+9075 U+e0102) 1192 | 遷 (U+9077) -> 遷󠄁 (U+9077 U+e0101) 1193 | 遷 (U+9077) -> 遷󠄂 (U+9077 U+e0102) 1194 | 遷 (U+9077) -> 遷󠄃 (U+9077 U+e0103) 1195 | 選 (U+9078) -> 選󠄁 (U+9078 U+e0101) 1196 | 遺 (U+907a) -> 遺󠄁 (U+907a U+e0101) 1197 | 遼 (U+907c) -> 遼󠄁 (U+907c U+e0101) 1198 | 避 (U+907f) -> 避󠄁 (U+907f U+e0101) 1199 | 邁 (U+9081) -> 邁󠄁 (U+9081 U+e0101) 1200 | 邃 (U+9083) -> 邃󠄁 (U+9083 U+e0101) 1201 | 還 (U+9084) -> 還󠄁 (U+9084 U+e0101) 1202 | 邇 (U+9087) -> 邇󠄁 (U+9087 U+e0101) 1203 | 邉 (U+9089) -> 邉󠄁 (U+9089 U+e0101) 1204 | 邉 (U+9089) -> 邉󠄂 (U+9089 U+e0102) 1205 | 邉 (U+9089) -> 邉󠄃 (U+9089 U+e0103) 1206 | 邉 (U+9089) -> 邉󠄄 (U+9089 U+e0104) 1207 | 邉 (U+9089) -> 邉󠄅 (U+9089 U+e0105) 1208 | 邉 (U+9089) -> 邉󠄆 (U+9089 U+e0106) 1209 | 邉 (U+9089) -> 邉󠄇 (U+9089 U+e0107) 1210 | 邉 (U+9089) -> 邉󠄈 (U+9089 U+e0108) 1211 | 邉 (U+9089) -> 邉󠄉 (U+9089 U+e0109) 1212 | 邉 (U+9089) -> 邉󠄊 (U+9089 U+e010a) 1213 | 邉 (U+9089) -> 邉󠄋 (U+9089 U+e010b) 1214 | 邉 (U+9089) -> 邉󠄌 (U+9089 U+e010c) 1215 | 邉 (U+9089) -> 邉󠄍 (U+9089 U+e010d) 1216 | 邉 (U+9089) -> 邉󠄎 (U+9089 U+e010e) 1217 | 邊 (U+908a) -> 邊󠄁 (U+908a U+e0101) 1218 | 邊 (U+908a) -> 邊󠄂 (U+908a U+e0102) 1219 | 邊 (U+908a) -> 邊󠄃 (U+908a U+e0103) 1220 | 邊 (U+908a) -> 邊󠄄 (U+908a U+e0104) 1221 | 邊 (U+908a) -> 邊󠄅 (U+908a U+e0105) 1222 | 邊 (U+908a) -> 邊󠄆 (U+908a U+e0106) 1223 | 邊 (U+908a) -> 邊󠄇 (U+908a U+e0107) 1224 | 那 (U+90a3) -> 那󠄁 (U+90a3 U+e0101) 1225 | 邦 (U+90a6) -> 邦󠄁 (U+90a6 U+e0101) 1226 | 邦 (U+90a6) -> 邦󠄂 (U+90a6 U+e0102) 1227 | 邨 (U+90a8) -> 邨󠄁 (U+90a8 U+e0101) 1228 | 邪 (U+90aa) -> 邪󠄁 (U+90aa U+e0101) 1229 | 邪 (U+90aa) -> 邪󠄂 (U+90aa U+e0102) 1230 | 郷 (U+90f7) -> 郷󠄁 (U+90f7 U+e0101) 1231 | 都 (U+90fd) -> 都︀ (U+90fd U+fe00) 1232 | 都 (U+90fd) -> 都󠄀 (U+90fd U+e0100) 1233 | 鄭 (U+912d) -> 鄭󠄀 (U+912d U+e0100) 1234 | 鄰 (U+9130) -> 鄰󠄁 (U+9130 U+e0101) 1235 | 酋 (U+914b) -> 酋󠄀 (U+914b U+e0100) 1236 | 酌 (U+914c) -> 酌󠄁 (U+914c U+e0101) 1237 | 配 (U+914d) -> 配󠄁 (U+914d U+e0101) 1238 | 酖 (U+9156) -> 酖󠄁 (U+9156 U+e0101) 1239 | 酘 (U+9158) -> 酘󠄁 (U+9158 U+e0101) 1240 | 酥 (U+9165) -> 酥󠄁 (U+9165 U+e0101) 1241 | 酲 (U+9172) -> 酲󠄁 (U+9172 U+e0101) 1242 | 酳 (U+9173) -> 酳󠄁 (U+9173 U+e0101) 1243 | 酷 (U+9177) -> 酷󠄁 (U+9177 U+e0101) 1244 | 醢 (U+91a2) -> 醢󠄁 (U+91a2 U+e0101) 1245 | 醪 (U+91aa) -> 醪󠄁 (U+91aa U+e0101) 1246 | 醯 (U+91af) -> 醯󠄁 (U+91af U+e0101) 1247 | 醱 (U+91b1) -> 醱󠄁 (U+91b1 U+e0101) 1248 | 醴 (U+91b4) -> 醴󠄁 (U+91b4 U+e0101) 1249 | 醺 (U+91ba) -> 醺󠄁 (U+91ba U+e0101) 1250 | 釁 (U+91c1) -> 釁󠄁 (U+91c1 U+e0101) 1251 | 采 (U+91c7) -> 采󠄁 (U+91c7 U+e0101) 1252 | 釜 (U+91dc) -> 釜󠄀 (U+91dc U+e0100) 1253 | 釣 (U+91e3) -> 釣󠄁 (U+91e3 U+e0101) 1254 | 釼 (U+91fc) -> 釼󠄁 (U+91fc U+e0101) 1255 | 鈷 (U+9237) -> 鈷󠄁 (U+9237 U+e0101) 1256 | 鉛 (U+925b) -> 鉛󠄁 (U+925b U+e0101) 1257 | 鉛 (U+925b) -> 鉛󠄂 (U+925b U+e0102) 1258 | 鋩 (U+92e9) -> 鋩󠄁 (U+92e9 U+e0101) 1259 | 錆 (U+9306) -> 錆󠄀 (U+9306 U+e0100) 1260 | 錵 (U+9335) -> 錵󠄁 (U+9335 U+e0101) 1261 | 鍥 (U+9365) -> 鍥󠄁 (U+9365 U+e0101) 1262 | 鍵 (U+9375) -> 鍵󠄀 (U+9375 U+e0100) 1263 | 鎋 (U+938b) -> 鎋󠄁 (U+938b U+e0101) 1264 | 鎌 (U+938c) -> 鎌󠄁 (U+938c U+e0101) 1265 | 鎖 (U+9396) -> 鎖󠄁 (U+9396 U+e0101) 1266 | 鎚 (U+939a) -> 鎚󠄀 (U+939a U+e0100) 1267 | 鎡 (U+93a1) -> 鎡󠄁 (U+93a1 U+e0101) 1268 | 鎮 (U+93ae) -> 鎮󠄁 (U+93ae U+e0101) 1269 | 鏝 (U+93dd) -> 鏝󠄁 (U+93dd U+e0101) 1270 | 鐺 (U+943a) -> 鐺󠄁 (U+943a U+e0101) 1271 | 鑓 (U+9453) -> 鑓󠄀 (U+9453 U+e0100) 1272 | 鑷 (U+9477) -> 鑷󠄁 (U+9477 U+e0101) 1273 | 閒 (U+9592) -> 閒󠄁 (U+9592 U+e0101) 1274 | 閫 (U+95ab) -> 閫󠄁 (U+95ab U+e0101) 1275 | 閻 (U+95bb) -> 閻󠄁 (U+95bb U+e0101) 1276 | 閼 (U+95bc) -> 閼󠄁 (U+95bc U+e0101) 1277 | 闍 (U+95cd) -> 闍󠄁 (U+95cd U+e0101) 1278 | 阪 (U+962a) -> 阪󠄁 (U+962a U+e0101) 1279 | 降 (U+964d) -> 降󠄁 (U+964d U+e0101) 1280 | 隆 (U+9686) -> 隆︀ (U+9686 U+fe00) 1281 | 隆 (U+9686) -> 隆󠄁 (U+9686 U+e0101) 1282 | 隆 (U+9686) -> 隆󠄂 (U+9686 U+e0102) 1283 | 隊 (U+968a) -> 隊󠄁 (U+968a U+e0101) 1284 | 隔 (U+9694) -> 隔󠄁 (U+9694 U+e0101) 1285 | 隘 (U+9698) -> 隘󠄁 (U+9698 U+e0101) 1286 | 隘 (U+9698) -> 隘󠄂 (U+9698 U+e0102) 1287 | 隙 (U+9699) -> 隙󠄀 (U+9699 U+e0100) 1288 | 隣 (U+96a3) -> 隣󠄁 (U+96a3 U+e0101) 1289 | 隣 (U+96a3) -> 隣󠄂 (U+96a3 U+e0102) 1290 | 隧 (U+96a7) -> 隧󠄁 (U+96a7 U+e0101) 1291 | 隲 (U+96b2) -> 隲󠄁 (U+96b2 U+e0101) 1292 | 隻 (U+96bb) -> 隻󠄁 (U+96bb U+e0101) 1293 | 雅 (U+96c5) -> 雅󠄁 (U+96c5 U+e0101) 1294 | 雅 (U+96c5) -> 雅󠄂 (U+96c5 U+e0102) 1295 | 雇 (U+96c7) -> 雇󠄁 (U+96c7 U+e0101) 1296 | 雙 (U+96d9) -> 雙󠄁 (U+96d9 U+e0101) 1297 | 雚 (U+96da) -> 雚󠄁 (U+96da U+e0101) 1298 | 難 (U+96e3) -> 難︀ (U+96e3 U+fe00) 1299 | 難 (U+96e3) -> 難󠄀 (U+96e3 U+e0100) 1300 | 雨 (U+96e8) -> 雨󠄁 (U+96e8 U+e0101) 1301 | 雪 (U+96ea) -> 雪󠄁 (U+96ea U+e0101) 1302 | 雰 (U+96f0) -> 雰󠄁 (U+96f0 U+e0101) 1303 | 霡 (U+9721) -> 霡󠄁 (U+9721 U+e0101) 1304 | 霤 (U+9724) -> 霤󠄁 (U+9724 U+e0101) 1305 | 霽 (U+973d) -> 霽󠄁 (U+973d U+e0101) 1306 | 靕 (U+9755) -> 靕󠄁 (U+9755 U+e0101) 1307 | 靖 (U+9756) -> 靖︀ (U+9756 U+fe00) 1308 | 靖 (U+9756) -> 靖󠄁 (U+9756 U+e0101) 1309 | 静 (U+9759) -> 静󠄁 (U+9759 U+e0101) 1310 | 靜 (U+975c) -> 靜󠄁 (U+975c U+e0101) 1311 | 靜 (U+975c) -> 靜󠄂 (U+975c U+e0102) 1312 | 靠 (U+9760) -> 靠󠄁 (U+9760 U+e0101) 1313 | 靠 (U+9760) -> 靠󠄂 (U+9760 U+e0102) 1314 | 靭 (U+976d) -> 靭󠄁 (U+976d U+e0101) 1315 | 靭 (U+976d) -> 靭󠄂 (U+976d U+e0102) 1316 | 靱 (U+9771) -> 靱󠄀 (U+9771 U+e0100) 1317 | 靱 (U+9771) -> 靱󠄁 (U+9771 U+e0101) 1318 | 靴 (U+9774) -> 靴󠄁 (U+9774 U+e0101) 1319 | 鞄 (U+9784) -> 鞄󠄀 (U+9784 U+e0100) 1320 | 鞘 (U+9798) -> 鞘󠄀 (U+9798 U+e0100) 1321 | 鞭 (U+97ad) -> 鞭󠄀 (U+97ad U+e0100) 1322 | 韓 (U+97d3) -> 韓󠄁 (U+97d3 U+e0101) 1323 | 韞 (U+97de) -> 韞󠄁 (U+97de U+e0101) 1324 | 音 (U+97f3) -> 音󠄁 (U+97f3 U+e0101) 1325 | 響 (U+97ff) -> 響︀ (U+97ff U+fe00) 1326 | 響 (U+97ff) -> 響󠄁 (U+97ff U+e0101) 1327 | 響 (U+97ff) -> 響󠄂 (U+97ff U+e0102) 1328 | 響 (U+97ff) -> 響󠄃 (U+97ff U+e0103) 1329 | 響 (U+97ff) -> 響󠄄 (U+97ff U+e0104) 1330 | 頌 (U+980c) -> 頌󠄁 (U+980c U+e0101) 1331 | 頑 (U+9811) -> 頑󠄁 (U+9811 U+e0101) 1332 | 頒 (U+9812) -> 頒󠄁 (U+9812 U+e0101) 1333 | 頓 (U+9813) -> 頓󠄁 (U+9813 U+e0101) 1334 | 頤 (U+9824) -> 頤󠄁 (U+9824 U+e0101) 1335 | 頻 (U+983b) -> 頻︀ (U+983b U+fe00) 1336 | 頻 (U+983b) -> 頻󠄀 (U+983b U+e0100) 1337 | 類 (U+985e) -> 類︀ (U+985e U+fe00) 1338 | 類 (U+985e) -> 類󠄀 (U+985e U+e0100) 1339 | 顧 (U+9867) -> 顧󠄁 (U+9867 U+e0101) 1340 | 顳 (U+9873) -> 顳󠄁 (U+9873 U+e0101) 1341 | 飃 (U+98c3) -> 飃󠄁 (U+98c3 U+e0101) 1342 | 食 (U+98df) -> 食󠄁 (U+98df U+e0101) 1343 | 飢 (U+98e2) -> 飢󠄁 (U+98e2 U+e0101) 1344 | 飫 (U+98eb) -> 飫󠄁 (U+98eb U+e0101) 1345 | 飯 (U+98ef) -> 飯︀ (U+98ef U+fe00) 1346 | 飯 (U+98ef) -> 飯󠄀 (U+98ef U+e0100) 1347 | 飯 (U+98ef) -> 飯󠄂 (U+98ef U+e0102) 1348 | 飴 (U+98f4) -> 飴󠄀 (U+98f4 U+e0100) 1349 | 飼 (U+98fc) -> 飼︀ (U+98fc U+fe00) 1350 | 飼 (U+98fc) -> 飼󠄁 (U+98fc U+e0101) 1351 | 飽 (U+98fd) -> 飽󠄁 (U+98fd U+e0101) 1352 | 飾 (U+98fe) -> 飾󠄁 (U+98fe U+e0101) 1353 | 餃 (U+9903) -> 餃󠄁 (U+9903 U+e0101) 1354 | 餅 (U+9905) -> 餅󠄀 (U+9905 U+e0100) 1355 | 餉 (U+9909) -> 餉󠄁 (U+9909 U+e0101) 1356 | 養 (U+990a) -> 養󠄁 (U+990a U+e0101) 1357 | 餌 (U+990c) -> 餌󠄀 (U+990c U+e0100) 1358 | 餌 (U+990c) -> 餌󠄁 (U+990c U+e0101) 1359 | 餌 (U+990c) -> 餌󠄂 (U+990c U+e0102) 1360 | 餐 (U+9910) -> 餐󠄀 (U+9910 U+e0100) 1361 | 餓 (U+9913) -> 餓󠄁 (U+9913 U+e0101) 1362 | 餡 (U+9921) -> 餡󠄁 (U+9921 U+e0101) 1363 | 館 (U+9928) -> 館︀ (U+9928 U+fe00) 1364 | 館 (U+9928) -> 館󠄁 (U+9928 U+e0101) 1365 | 饅 (U+9945) -> 饅󠄁 (U+9945 U+e0101) 1366 | 饅 (U+9945) -> 饅󠄂 (U+9945 U+e0102) 1367 | 饋 (U+994b) -> 饋󠄁 (U+994b U+e0101) 1368 | 饗 (U+9957) -> 饗󠄀 (U+9957 U+e0100) 1369 | 饗 (U+9957) -> 饗󠄂 (U+9957 U+e0102) 1370 | 饗 (U+9957) -> 饗󠄃 (U+9957 U+e0103) 1371 | 駁 (U+99c1) -> 駁󠄀 (U+99c1 U+e0100) 1372 | 駐 (U+99d0) -> 駐󠄁 (U+99d0 U+e0101) 1373 | 騙 (U+9a19) -> 騙󠄀 (U+9a19 U+e0100) 1374 | 騰 (U+9a30) -> 騰󠄁 (U+9a30 U+e0101) 1375 | 驅 (U+9a45) -> 驅󠄁 (U+9a45 U+e0101) 1376 | 驊 (U+9a4a) -> 驊󠄀 (U+9a4a U+e0100) 1377 | 驟 (U+9a5f) -> 驟󠄁 (U+9a5f U+e0101) 1378 | 驥 (U+9a65) -> 驥󠄁 (U+9a65 U+e0101) 1379 | 髯 (U+9aef) -> 髯󠄁 (U+9aef U+e0101) 1380 | 鬘 (U+9b18) -> 鬘󠄁 (U+9b18 U+e0101) 1381 | 鬭 (U+9b2d) -> 鬭󠄁 (U+9b2d U+e0101) 1382 | 鬮 (U+9b2e) -> 鬮󠄁 (U+9b2e U+e0101) 1383 | 鬵 (U+9b35) -> 鬵󠄁 (U+9b35 U+e0101) 1384 | 魍 (U+9b4d) -> 魍󠄁 (U+9b4d U+e0101) 1385 | 魔 (U+9b54) -> 魔󠄁 (U+9b54 U+e0101) 1386 | 魘 (U+9b58) -> 魘󠄁 (U+9b58 U+e0101) 1387 | 鮗 (U+9b97) -> 鮗󠄁 (U+9b97 U+e0101) 1388 | 鮨 (U+9ba8) -> 鮨󠄁 (U+9ba8 U+e0101) 1389 | 鮫 (U+9bab) -> 鮫󠄀 (U+9bab U+e0100) 1390 | 鮮 (U+9bae) -> 鮮󠄁 (U+9bae U+e0101) 1391 | 鮹 (U+9bb9) -> 鮹󠄁 (U+9bb9 U+e0101) 1392 | 鯆 (U+9bc6) -> 鯆󠄁 (U+9bc6 U+e0101) 1393 | 鯖 (U+9bd6) -> 鯖󠄀 (U+9bd6 U+e0100) 1394 | 鯛 (U+9bdb) -> 鯛󠄁 (U+9bdb U+e0101) 1395 | 鯡 (U+9be1) -> 鯡󠄁 (U+9be1 U+e0101) 1396 | 鯱 (U+9bf1) -> 鯱󠄁 (U+9bf1 U+e0101) 1397 | 鯲 (U+9bf2) -> 鯲󠄁 (U+9bf2 U+e0101) 1398 | 鰈 (U+9c08) -> 鰈󠄁 (U+9c08 U+e0101) 1399 | 鰤 (U+9c24) -> 鰤󠄁 (U+9c24 U+e0101) 1400 | 鰯 (U+9c2f) -> 鰯󠄀 (U+9c2f U+e0100) 1401 | 鰻 (U+9c3b) -> 鰻󠄁 (U+9c3b U+e0101) 1402 | 鱈 (U+9c48) -> 鱈󠄁 (U+9c48 U+e0101) 1403 | 鱒 (U+9c52) -> 鱒󠄀 (U+9c52 U+e0100) 1404 | 鱗 (U+9c57) -> 鱗󠄁 (U+9c57 U+e0101) 1405 | 鳦 (U+9ce6) -> 鳦󠄁 (U+9ce6 U+e0101) 1406 | 鴇 (U+9d07) -> 鴇󠄁 (U+9d07 U+e0101) 1407 | 鴈 (U+9d08) -> 鴈󠄁 (U+9d08 U+e0101) 1408 | 鴉 (U+9d09) -> 鴉󠄀 (U+9d09 U+e0100) 1409 | 鵈 (U+9d48) -> 鵈󠄁 (U+9d48 U+e0101) 1410 | 鵠 (U+9d60) -> 鵠󠄀 (U+9d60 U+e0100) 1411 | 鵬 (U+9d6c) -> 鵬󠄁 (U+9d6c U+e0101) 1412 | 鶴 (U+9db4) -> 鶴︀ (U+9db4 U+fe00) 1413 | 鶴 (U+9db4) -> 鶴󠄀 (U+9db4 U+e0100) 1414 | 鶿 (U+9dbf) -> 鶿󠄁 (U+9dbf U+e0101) 1415 | 鷀 (U+9dc0) -> 鷀󠄁 (U+9dc0 U+e0101) 1416 | 鷂 (U+9dc2) -> 鷂󠄁 (U+9dc2 U+e0101) 1417 | 鷏 (U+9dcf) -> 鷏󠄁 (U+9dcf U+e0101) 1418 | 麗 (U+9e97) -> 麗󠄁 (U+9e97 U+e0101) 1419 | 麟 (U+9e9f) -> 麟󠄁 (U+9e9f U+e0101) 1420 | 麟 (U+9e9f) -> 麟󠄂 (U+9e9f U+e0102) 1421 | 麥 (U+9ea5) -> 麥󠄁 (U+9ea5 U+e0101) 1422 | 麪 (U+9eaa) -> 麪󠄁 (U+9eaa U+e0101) 1423 | 麭 (U+9ead) -> 麭󠄁 (U+9ead U+e0101) 1424 | 麻 (U+9ebb) -> 麻󠄁 (U+9ebb U+e0101) 1425 | 麿 (U+9ebf) -> 麿󠄁 (U+9ebf U+e0101) 1426 | 黌 (U+9ecc) -> 黌󠄁 (U+9ecc U+e0101) 1427 | 黛 (U+9edb) -> 黛󠄁 (U+9edb U+e0101) 1428 | 鼈 (U+9f08) -> 鼈󠄁 (U+9f08 U+e0101) 1429 | 鼈 (U+9f08) -> 鼈󠄂 (U+9f08 U+e0102) 1430 | 鼻 (U+9f3b) -> 鼻󠄁 (U+9f3b U+e0101) 1431 | 齊 (U+9f4a) -> 齊󠄁 (U+9f4a U+e0101) 1432 | 齋 (U+9f4b) -> 齋󠄁 (U+9f4b U+e0101) 1433 | 齎 (U+9f4e) -> 齎󠄁 (U+9f4e U+e0101) 1434 | 齧 (U+9f67) -> 齧󠄁 (U+9f67 U+e0101) 1435 | 龍 (U+9f8d) -> 龍󠄁 (U+9f8d U+e0101) 1436 | 龍 (U+9f8d) -> 龍󠄂 (U+9f8d U+e0102) 1437 | 龝 (U+9f9d) -> 龝󠄁 (U+9f9d U+e0101) 1438 | 﨑 (U+fa11) -> 﨑󠄁 (U+fa11 U+e0101) 1439 | 﨤 (U+fa24) -> 﨤󠄁 (U+fa24 U+e0101) 1440 | ! (U+ff01) -> !︀ (U+ff01 U+fe00) 1441 | , (U+ff0c) -> ,︁ (U+ff0c U+fe01) 1442 | . (U+ff0e) -> .︁ (U+ff0e U+fe01) 1443 | : (U+ff1a) -> :︀ (U+ff1a U+fe00) 1444 | ; (U+ff1b) -> ;︀ (U+ff1b U+fe00) 1445 | ? (U+ff1f) -> ?︀ (U+ff1f U+fe00) 1446 | 𣗄 (U+235c4) -> 𣗄󠄁 (U+235c4 U+e0101) 1447 | 𣘺 (U+2363a) -> 𣘺󠄁 (U+2363a U+e0101) 1448 | 𣘺 (U+2363a) -> 𣘺󠄂 (U+2363a U+e0102) 1449 | 𣠽 (U+2383d) -> 𣠽󠄁 (U+2383d U+e0101) 1450 | 𤋮 (U+242ee) -> 𤋮︀ (U+242ee U+fe00) 1451 | 𤋮 (U+242ee) -> 𤋮󠄁 (U+242ee U+e0101) 1452 | 𦉰 (U+26270) -> 𦉰󠄁 (U+26270 U+e0101) 1453 | 𩵋 (U+29d4b) -> 𩵋󠄁 (U+29d4b U+e0101) 1454 | 𩸽 (U+29e3d) -> 𩸽󠄁 (U+29e3d U+e0101) 1455 | 𪘚 (U+2a61a) -> 𪘚󠄁 (U+2a61a U+e0101) 1456 | -------------------------------------------------------------------------------- /doc/note/How_to_make_sfd.txt: -------------------------------------------------------------------------------- 1 | sfd の作り方のメモ 2 | 3 | # Hack (手動) 4 | 5 | Ascent: 881 6 | Descent: 143 7 | →EM1024 にした sfd をあらかじめ用意した 8 | 9 | 拡大縮小 グリフ起点を基点に X: 87% 10 | グリフ起点を基点に Y: 91% 11 | 幅変更: 532 12 | 移動: X: -5 13 | 14 | brokenbar コピーして verticalbar に貼り付け → Y: 114% に変形 15 | 16 | # 源柔 (スクリプト内で自動実行) 17 | 18 | 幅変更: 1064 19 | 移動 X:20 Y: 0 20 | 21 | ## 全角スペースを点線角丸四角形にする 22 | 23 | 1. U+2505, U+25A2 を組み合わせ、重複箇所を抽出する 24 | 2. 点線間の隙間長さを調節する 25 | 3. 抽出後、70%の大きさに縮小する -------------------------------------------------------------------------------- /doc/note/fig.expand_stroke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuru7/HackGen/6960f16d830ef1b76ccf8d99ed871a6241c28e7d/doc/note/fig.expand_stroke.png -------------------------------------------------------------------------------- /doc/note/memo_DisplayOnMery.txt: -------------------------------------------------------------------------------- 1 | # Mery での表示 2 | # * 8pt = 11 3 | # * 9pt = 12 4 | # * 10pt = 13 5 | # * 10.5pt = 14 6 | # * 11pt = 15 7 | # * 12pt = 16 8 | # * 13pt = 17 9 | # * 13.5pt = 18 10 | # * 14pt = 19 11 | # * 15pt = 20 12 | # * 16pt = 21 13 | -------------------------------------------------------------------------------- /doc/note/modify_arrow.md: -------------------------------------------------------------------------------- 1 | * 縦矢印系 y+300 2 | * Dashed Arrow (U+21E1, U+21E3) は点部分を先端方向に向かって y±75 も追加で対応 3 | * 矢印の先端部分 xy±200 4 | * 両端矢印の場合は xy±100 5 | * 修正が困難なため未修正 6 | * U+219C-219D 7 | * U+21AE-21AF 8 | * U+21B6-21B7 9 | * U+21B9-21CF 10 | * U+21DA-21DB 11 | * U+21E6-21F0 12 | * U+21F3-21FF -------------------------------------------------------------------------------- /hinting_post_processing/hackgen-bold-ctrl.txt: -------------------------------------------------------------------------------- 1 | # plus 2 | uni002B touch 4,5,10,11 y -0.5 @17 3 | uni002B touch 4,5,10,11 y 0.5 @14,18 4 | 5 | # eight 6 | uni0038 touch 9-11,25-27,34-35,48,56-59 y -0.5 @13,17 7 | 8 | # zero 9 | uni0030 touch 34-46 y -0.5 @13,17 10 | uni0030 touch 34-46 y 0.5 @15 11 | 12 | # a 13 | uni0061 touch 7-11,48-52 y -0.5 @11- 14 | 15 | # i,j 16 | uni0069 touch 0-11 y 0.5 @11- 17 | uni006A touch 0-11 y 0.5 @11- 18 | uni0069 touch 0-11 y 0.8 @18 19 | uni006A touch 0-11 y 0.8 @18 20 | 21 | # | 22 | #uni007C touch 2-3 y -0.4 @14 23 | #uni007C touch 4-5 y 0.4 @14 24 | -------------------------------------------------------------------------------- /hinting_post_processing/hackgen-regular-ctrl.txt: -------------------------------------------------------------------------------- 1 | # plus 2 | uni002B touch 4,5,10,11 y -0.5 @15 3 | uni002B touch 4,5,10,11 y 0.5 @16 4 | 5 | # eight 6 | uni0038 touch 5-8,24-26,32-33,44,52-54 y -0.4 @13,16,18-20 7 | uni0038 touch 5-8,24-26,32-33,44,52-54 y 0.4 @15 8 | 9 | # zero 10 | uni0030 touch 33-45 y -0.3 @20 11 | uni0030 touch 33-45 y -0.5 @13 12 | uni0030 touch 33-45 y 0.3 @15 13 | 14 | # a 15 | uni0061 touch 5-10,40-44 y -0.5 @13-14,16,19 16 | 17 | # i,j 18 | uni0069 touch 0-12 y 0.3 @11- 19 | uni006A touch 0-11 y 0.3 @11- 20 | uni0069 touch 0-12 y 0.75 @18 21 | uni006A touch 0-11 y 0.75 @18 22 | 23 | # | 24 | #uni007C touch 2-3 y -0.4 @14 25 | #uni007C touch 4-5 y 0.4 @14 26 | -------------------------------------------------------------------------------- /hinting_post_processing/hackgen35-bold-ctrl.txt: -------------------------------------------------------------------------------- 1 | # plus 2 | uni002B touch 4,5,10,11 y -0.5 @11,16 3 | uni002B touch 4,5,10,11 y 0.5 @12,13,17 4 | 5 | # eight 6 | uni0038 touch 9-11,25-27,34-35,48,55-60 y -0.5 @13,14,17 7 | 8 | # zero 9 | uni0030 touch 34-46 y -0.4 @15-16 10 | uni0030 touch 34-46 y -0.5 @13,17,19 11 | 12 | # a 13 | uni0061 touch 7-11,48-52 y -0.5 @11- 14 | 15 | # i,j 16 | uni0069 touch 3-8 y 0.5 @11- 17 | uni006A touch 3-8 y 0.5 @11- 18 | uni0069 touch 0-2,9-11 y 0.75 @11- 19 | uni006A touch 0-2,9-11 y 0.75 @11- 20 | 21 | # | 22 | uni007C touch 2-3 y -0.4 @13 23 | uni007C touch 4-5 y 0.4 @13 24 | -------------------------------------------------------------------------------- /hinting_post_processing/hackgen35-regular-ctrl.txt: -------------------------------------------------------------------------------- 1 | # plus 2 | uni002B touch 4,5,10,11 y -0.5 @11,15 3 | uni002B touch 4,5,10,11 y 0.5 @12,16 4 | 5 | # eight 6 | uni0038 touch 5-7,23-25,31-32,43,51-55 y -0.4 @13,15,18 7 | 8 | # zero 9 | uni0030 touch 34-46 y -0.4 @15-16 10 | uni0030 touch 34-46 y -0.5 @12-13,17,19 11 | 12 | # a 13 | uni0061 touch 5-10,40-46 y -0.5 @13,17,19 14 | 15 | # i,j 16 | uni0069 touch 3-8 y 0.5 @11- 17 | uni006A touch 3-8 y 0.5 @11- 18 | 19 | # | 20 | uni007C touch 2-3 y -0.4 @13 21 | uni007C touch 4-5 y 0.4 @13 22 | -------------------------------------------------------------------------------- /little_scripts/extract_dakuon.sh: -------------------------------------------------------------------------------- 1 | #!fontforge -script 2 | 3 | Open("./source/GenJyuuGothicL-Monospace-Bold.ttf") 4 | 5 | Select(0u3094) # ゔ (U+3094) 6 | SelectMore(0u304C) # が (U+304C) 7 | SelectMore(0u304E) # ぎ (U+304E) 8 | SelectMore(0u3050) # ぐ (U+3050) 9 | SelectMore(0u3052) # げ (U+3052) 10 | SelectMore(0u3054) # ご (U+3054) 11 | SelectMore(0u3056) # ざ (U+3056) 12 | SelectMore(0u3058) # じ (U+3058) 13 | SelectMore(0u305A) # ず (U+305A) 14 | SelectMore(0u305C) # ぜ (U+305C) 15 | SelectMore(0u305E) # ぞ (U+305E) 16 | SelectMore(0u3060) # だ (U+3060) 17 | SelectMore(0u3062) # ぢ (U+3062) 18 | SelectMore(0u3065) # づ (U+3065) 19 | SelectMore(0u3067) # で (U+3067) 20 | SelectMore(0u3069) # ど (U+3069) 21 | SelectMore(0u3070) # ば (U+3070) 22 | SelectMore(0u3073) # び (U+3073) 23 | SelectMore(0u3076) # ぶ (U+3076) 24 | SelectMore(0u3079) # べ (U+3079) 25 | SelectMore(0u307C) # ぼ (U+307C) 26 | SelectMore(0u30F4) # ヴ (U+30F4) 27 | SelectMore(0u30AC) # ガ (U+30AC) 28 | SelectMore(0u30AE) # ギ (U+30AE) 29 | SelectMore(0u30B0) # グ (U+30B0) 30 | SelectMore(0u30B2) # ゲ (U+30B2) 31 | SelectMore(0u30B4) # ゴ (U+30B4) 32 | SelectMore(0u30B6) # ザ (U+30B6) 33 | SelectMore(0u30B8) # ジ (U+30B8) 34 | SelectMore(0u30BA) # ズ (U+30BA) 35 | SelectMore(0u30BC) # ゼ (U+30BC) 36 | SelectMore(0u30BE) # ゾ (U+30BE) 37 | SelectMore(0u30C0) # ダ (U+30C0) 38 | SelectMore(0u30C2) # ヂ (U+30C2) 39 | SelectMore(0u30C5) # ヅ (U+30C5) 40 | SelectMore(0u30C7) # デ (U+30C7) 41 | SelectMore(0u30C9) # ド (U+30C9) 42 | SelectMore(0u30D0) # バ (U+30D0) 43 | SelectMore(0u30D3) # ビ (U+30D3) 44 | SelectMore(0u30D6) # ブ (U+30D6) 45 | SelectMore(0u30D9) # ベ (U+30D9) 46 | SelectMore(0u30DC) # ボ (U+30DC) 47 | SelectMore(0u30F7) # ヷ (U+30F7) 48 | SelectMore(0u30F8) # ヸ (U+30F8) 49 | SelectMore(0u30F9) # ヹ (U+30F9) 50 | SelectMore(0u30FA) # ヺ (U+30FA) 51 | 52 | SelectInvert() 53 | Clear() 54 | 55 | Save("./dakuon.sfd") 56 | Close() -------------------------------------------------------------------------------- /make_hackgen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | hackgen_version="2.10.0" 4 | 5 | BASE_DIR=$(cd $(dirname $0); pwd) 6 | PREFIX="$1" 7 | 8 | function mvBuild() { 9 | mkdir -p "${BASE_DIR}/build/" 10 | mv -f "${BASE_DIR}/"HackGen*.ttf "${BASE_DIR}/build/" 11 | } 12 | 13 | "${BASE_DIR}/hackgen_generator.sh" "$PREFIX" "$hackgen_version" \ 14 | && "${BASE_DIR}/copyright.sh" "$PREFIX" \ 15 | && "${BASE_DIR}/os2_patch.sh" "$PREFIX" \ 16 | && "${BASE_DIR}/cmap_patch.sh" "$PREFIX" \ 17 | && mvBuild 18 | -------------------------------------------------------------------------------- /os2_patch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | BASE_DIR=$(cd $(dirname $0); pwd) 4 | PREFIX="$1" 5 | 6 | xAvgCharWidth_SETVAL=540 7 | HACKGEN_PATTERN=${PREFIX}'HackGen[^3]*.ttf' 8 | 9 | xAvgCharWidth53_SETVAL=1030 10 | HACKGEN53_PATTERN=${PREFIX}'HackGen35*.ttf' 11 | 12 | for P in ${BASE_DIR}/${HACKGEN_PATTERN}; do 13 | ttx -t OS/2 -t post "$P" 14 | 15 | xAvgCharWidth_value=$(grep xAvgCharWidth "${P%%.ttf}.ttx" | awk -F\" '{print $2}') 16 | sed -i.bak -e 's,xAvgCharWidth value="'$xAvgCharWidth_value'",xAvgCharWidth value="'${xAvgCharWidth_SETVAL}'",' "${P%%.ttf}.ttx" 17 | 18 | fsSelection_value=$(grep fsSelection "${P%%.ttf}.ttx" | awk -F\" '{print $2}') 19 | if [ `echo $P | grep Regular` ]; then 20 | fsSelection_sed_value='00000000 01000000' 21 | elif [ `echo $P | grep BoldOblique` ]; then 22 | fsSelection_sed_value='00000000 00100001' 23 | elif [ `echo $P | grep Bold` ]; then 24 | fsSelection_sed_value='00000000 00100000' 25 | elif [ `echo $P | grep Oblique` ]; then 26 | fsSelection_sed_value='00000000 00000001' 27 | fi 28 | sed -i.bak -e 's,fsSelection value="'"$fsSelection_value"'",fsSelection value="'"$fsSelection_sed_value"'",' "${P%%.ttf}.ttx" 29 | 30 | underlinePosition_value=$(grep 'underlinePosition value' "${P%%.ttf}.ttx" | awk -F\" '{print $2}') 31 | sed -i.bak -e 's,underlinePosition value="'$underlinePosition_value'",underlinePosition value="-70",' "${P%%.ttf}.ttx" 32 | 33 | sed -i.bak -e 's,,,' "${P%%.ttf}.ttx" 34 | 35 | mv "$P" "${P}_orig" 36 | ttx -m "${P}_orig" "${P%%.ttf}.ttx" 37 | 38 | if [ $? -eq 0 ]; then 39 | mv "${P}_orig" "${BASE_DIR}/bak/" 40 | mv "${P%%.ttf}.ttx" "${BASE_DIR}/bak/" 41 | rm "${P%%.ttf}.ttx.bak" 42 | fi 43 | done 44 | 45 | for P in ${BASE_DIR}/${HACKGEN53_PATTERN}; do 46 | ttx -t OS/2 -t post "$P" 47 | 48 | xAvgCharWidth_value=$(grep xAvgCharWidth "${P%%.ttf}.ttx" | awk -F\" '{print $2}') 49 | sed -i.bak -e 's,xAvgCharWidth value="'$xAvgCharWidth_value'",xAvgCharWidth value="'${xAvgCharWidth53_SETVAL}'",' "${P%%.ttf}.ttx" 50 | 51 | fsSelection_value=$(grep fsSelection "${P%%.ttf}.ttx" | awk -F\" '{print $2}') 52 | if [ `echo $P | grep Regular` ]; then 53 | fsSelection_sed_value='00000000 01000000' 54 | elif [ `echo $P | grep BoldOblique` ]; then 55 | fsSelection_sed_value='00000000 00100001' 56 | elif [ `echo $P | grep Bold` ]; then 57 | fsSelection_sed_value='00000000 00100000' 58 | elif [ `echo $P | grep Oblique` ]; then 59 | fsSelection_sed_value='00000000 00000001' 60 | fi 61 | sed -i.bak -e 's,fsSelection value="'"$fsSelection_value"'",fsSelection value="'"$fsSelection_sed_value"'",' "${P%%.ttf}.ttx" 62 | 63 | underlinePosition_value=$(grep 'underlinePosition value' "${P%%.ttf}.ttx" | awk -F\" '{print $2}') 64 | sed -i.bak -e 's,underlinePosition value="'$underlinePosition_value'",underlinePosition value="-70",' "${P%%.ttf}.ttx" 65 | 66 | mv "$P" "${P}_orig" 67 | ttx -m "${P}_orig" "${P%%.ttf}.ttx" 68 | 69 | if [ $? -eq 0 ]; then 70 | mv -f "${P}_orig" "${BASE_DIR}/bak/" 71 | mv -f "${P%%.ttf}.ttx" "${BASE_DIR}/bak/" 72 | rm -f "${P%%.ttf}.ttx.bak" 73 | fi 74 | done 75 | -------------------------------------------------------------------------------- /source/GenJyuuGothicL-Monospace-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuru7/HackGen/6960f16d830ef1b76ccf8d99ed871a6241c28e7d/source/GenJyuuGothicL-Monospace-Bold.ttf -------------------------------------------------------------------------------- /source/GenJyuuGothicL-Monospace-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuru7/HackGen/6960f16d830ef1b76ccf8d99ed871a6241c28e7d/source/GenJyuuGothicL-Monospace-Regular.ttf -------------------------------------------------------------------------------- /source/Hack-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuru7/HackGen/6960f16d830ef1b76ccf8d99ed871a6241c28e7d/source/Hack-Bold.ttf -------------------------------------------------------------------------------- /source/Hack-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuru7/HackGen/6960f16d830ef1b76ccf8d99ed871a6241c28e7d/source/Hack-Regular.ttf -------------------------------------------------------------------------------- /source/HackNerdFont-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuru7/HackGen/6960f16d830ef1b76ccf8d99ed871a6241c28e7d/source/HackNerdFont-Bold.ttf -------------------------------------------------------------------------------- /source/HackNerdFont-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuru7/HackGen/6960f16d830ef1b76ccf8d99ed871a6241c28e7d/source/HackNerdFont-Regular.ttf -------------------------------------------------------------------------------- /source/Ideographic_Space.sfd: -------------------------------------------------------------------------------- 1 | SplineFontDB: 3.2 2 | FontName: GenJyuuGothicL-Monospace-Regular 3 | FullName: Gen Jyuu Gothic L Monospace Regular 4 | FamilyName: Gen Jyuu Gothic L Monospace Regular 5 | Weight: Book 6 | Copyright: [Source Han Sans]\nCopyright (c) 2014, 2015 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name 'Source'.\n\n[M+ OUTLINE FONTS]\nCopyright(c) 2015 M+ FONTS PROJECT 7 | Version: 1.002.20150607 8 | ItalicAngle: 0 9 | UnderlinePosition: -153 10 | UnderlineWidth: 51 11 | Ascent: 881 12 | Descent: 143 13 | InvalidEm: 0 14 | sfntRevision: 0x00010083 15 | LayerCount: 2 16 | Layer: 0 1 "+gMyXYgAA" 1 17 | Layer: 1 1 "+Uk2XYgAA" 0 18 | HasVMetrics: 1 19 | XUID: [1021 40 1406584144 8556147] 20 | StyleMap: 0x0040 21 | FSType: 8 22 | OS2Version: 1 23 | OS2_WeightWidthSlopeOnly: 0 24 | OS2_UseTypoMetrics: 0 25 | CreationTime: 1420876368 26 | ModificationTime: 1629075341 27 | PfmFamily: 17 28 | TTFWeight: 400 29 | TTFWidth: 5 30 | LineGap: 92 31 | VLineGap: 92 32 | Panose: 2 11 3 9 2 2 3 2 2 7 33 | OS2TypoAscent: 881 34 | OS2TypoAOffset: 0 35 | OS2TypoDescent: -143 36 | OS2TypoDOffset: 0 37 | OS2TypoLinegap: 92 38 | OS2WinAscent: 1101 39 | OS2WinAOffset: 0 40 | OS2WinDescent: 328 41 | OS2WinDOffset: 0 42 | HheadAscent: 1101 43 | HheadAOffset: 0 44 | HheadDescent: -328 45 | HheadDOffset: 0 46 | OS2SubXSize: 666 47 | OS2SubYSize: 716 48 | OS2SubXOff: 0 49 | OS2SubYOff: 143 50 | OS2SupXSize: 666 51 | OS2SupYSize: 716 52 | OS2SupXOff: 0 53 | OS2SupYOff: 490 54 | OS2StrikeYSize: 50 55 | OS2StrikeYPos: 264 56 | OS2FamilyClass: 2057 57 | OS2Vendor: 'MM ' 58 | OS2CodePages: 601201bf.dff70000 59 | OS2UnicodeRanges: e1000aff.6a47fdfb.02000012.00000000 60 | Lookup: 1 0 0 "'vert' Vertical Alternates (obs) lookup 0" { "'vert' Vertical Alternates (obs) lookup 0 subtable" } ['vert' ('DFLT' <'dflt' > 'cyrl' <'dflt' > 'grek' <'dflt' > 'hani' <'dflt' > 'kana' <'JAN ' 'dflt' > 'latn' <'dflt' > ) ] 61 | Lookup: 1 0 0 "'jp90' JIS90 Forms lookup 1" { "'jp90' JIS90 Forms lookup 1 subtable" } ['jp90' ('DFLT' <'dflt' > 'cyrl' <'dflt' > 'grek' <'dflt' > 'hani' <'dflt' > 'kana' <'JAN ' 'dflt' > 'latn' <'dflt' > ) ] 62 | Lookup: 1 0 0 "'jp83' JIS83 Forms lookup 2" { "'jp83' JIS83 Forms lookup 2 subtable" } ['jp83' ('DFLT' <'dflt' > 'cyrl' <'dflt' > 'grek' <'dflt' > 'hani' <'dflt' > 'kana' <'JAN ' 'dflt' > 'latn' <'dflt' > ) ] 63 | Lookup: 1 0 0 "'jp78' JIS78 Forms lookup 3" { "'jp78' JIS78 Forms lookup 3 subtable" } ['jp78' ('DFLT' <'dflt' > 'cyrl' <'dflt' > 'grek' <'dflt' > 'hani' <'dflt' > 'kana' <'JAN ' 'dflt' > 'latn' <'dflt' > ) ] 64 | Lookup: 1 0 0 "'aalt' Access All Alternates lookup 4" { "'aalt' Access All Alternates lookup 4 subtable" } ['aalt' ('DFLT' <'dflt' > 'cyrl' <'dflt' > 'grek' <'dflt' > 'hani' <'dflt' > 'kana' <'JAN ' 'dflt' > 'latn' <'dflt' > ) ] 65 | Lookup: 4 0 0 "'ccmp' Glyph Composition/Decomposition lookup 5" { "'ccmp' Glyph Composition/Decomposition lookup 5 subtable" } ['ccmp' ('hani' <'dflt' > 'kana' <'JAN ' 'dflt' > 'latn' <'dflt' > ) ] 66 | Lookup: 4 0 0 "'ccmp' Glyph Composition/Decomposition lookup 6" { "'ccmp' Glyph Composition/Decomposition lookup 6 subtable" } ['ccmp' ('DFLT' <'dflt' > 'cyrl' <'dflt' > 'grek' <'dflt' > 'latn' <'dflt' > ) ] 67 | Lookup: 1 0 0 "Single Substitution lookup 7" { "Single Substitution lookup 7 subtable" } [] 68 | Lookup: 6 0 0 "'ccmp' Glyph Composition/Decomposition lookup 8" { "'ccmp' Glyph Composition/Decomposition lookup 8 contextual 0" "'ccmp' Glyph Composition/Decomposition lookup 8 contextual 1" "'ccmp' Glyph Composition/Decomposition lookup 8 contextual 2" } ['ccmp' ('DFLT' <'dflt' > 'cyrl' <'dflt' > 'grek' <'dflt' > 'latn' <'dflt' > ) ] 69 | Lookup: 1 0 0 "'vrt2' Vertical Rotation & Alternates lookup 9" { "'vrt2' Vertical Rotation & Alternates lookup 9 subtable" ("vert") } ['vrt2' ('cyrl' <'dflt' > 'grek' <'dflt' > 'hani' <'dflt' > 'kana' <'dflt' > 'latn' <'dflt' > ) ] 70 | Lookup: 3 0 0 "'aalt' Access All Alternates lookup 10" { "'aalt' Access All Alternates lookup 10 subtable" } ['aalt' ('DFLT' <'dflt' > 'cyrl' <'dflt' > 'grek' <'dflt' > 'hani' <'dflt' > 'kana' <'JAN ' 'dflt' > 'latn' <'dflt' > ) ] 71 | Lookup: 258 0 0 "'kern' Horizontal Kerning in Latin lookup 0" { "'kern' Horizontal Kerning in Latin lookup 0 per glyph data 0" "'kern' Horizontal Kerning in Latin lookup 0 kerning class 1" } ['kern' ('DFLT' <'dflt' > 'latn' <'AZE ' 'CRT ' 'TRK ' 'dflt' > ) ] 72 | Lookup: 262 4 0 "'mkmk' Mark to Mark lookup 1" { "'mkmk' Mark to Mark lookup 1 subtable" } ['mkmk' ('DFLT' <'dflt' > 'cyrl' <'dflt' > 'latn' <'dflt' > ) ] 73 | Lookup: 260 4 0 "'mark' Mark Positioning lookup 2" { "'mark' Mark Positioning lookup 2 subtable" } ['mark' ('DFLT' <'dflt' > 'cyrl' <'dflt' > 'latn' <'dflt' > ) ] 74 | Lookup: 260 4 0 "'mark' Mark Positioning lookup 3" { "'mark' Mark Positioning lookup 3 subtable" } ['mark' ('DFLT' <'dflt' > 'cyrl' <'dflt' > 'grek' <'dflt' > 'latn' <'dflt' > ) ] 75 | Lookup: 262 4 0 "'mkmk' Mark to Mark lookup 4" { "'mkmk' Mark to Mark lookup 4 subtable" } ['mkmk' ('DFLT' <'dflt' > 'cyrl' <'dflt' > 'latn' <'dflt' > ) ] 76 | DEI: 91125 77 | KernClass2: 90 69 "'kern' Horizontal Kerning in Latin lookup 0 kerning class 1" 78 | 177 A Agrave Aacute Acircumflex Atilde Adieresis Aring Amacron Abreve Aogonek uni01CD uni1EA0 uni1EA2 uni1EA4 uni1EA6 uni1EA8 uni1EAA uni1EAC uni1EAE uni1EB0 uni1EB2 uni1EB4 uni1EB6 79 | 0 80 | 156 E AE Egrave Eacute Ecircumflex Edieresis Emacron Ebreve Edotaccent Eogonek Ecaron OE uni1E16 uni1EB8 uni1EBA uni1EBC uni1EBE uni1EC0 uni1EC2 uni1EC4 uni1EC6 81 | 17 B uni0243 uni1E06 82 | 0 83 | 47 C Ccedilla Cacute Ccircumflex Cdotaccent Ccaron 84 | 0 85 | 207 D O Q Eth Ograve Oacute Ocircumflex Otilde Odieresis Oslash Dcaron Dcroat Omacron uni014E Ohungarumlaut uni018F uni01D1 uni01EA uni1E0C uni1E0E uni1E52 uni1ECC uni1ECE uni1ED0 uni1ED2 uni1ED4 uni1ED6 uni1ED8 86 | 0 87 | 1 F 88 | 0 89 | 54 G Gcircumflex Gbreve Gdotaccent uni0122 Gcaron uni1E20 90 | 0 91 | 94 H M N Ntilde Hcircumflex Nacute uni0145 Ncaron uni1E24 uni1E2A uni1E42 uni1E44 uni1E46 uni1E48 92 | 103 I Igrave Iacute Icircumflex Idieresis Itilde Imacron uni012C Iogonek Idotaccent uni01CF uni1EC8 uni1ECA 93 | 0 94 | 13 J Jcircumflex 95 | 0 96 | 17 K uni0136 uni1E34 97 | 0 98 | 52 L Lacute uni013B Ldot Lslash uni1E36 uni1E38 uni1E3A 99 | 0 100 | 6 Lcaron 101 | 45 Ohorn uni1EDA uni1EDC uni1EDE uni1EE0 uni1EE2 102 | 1 P 103 | 0 104 | 47 R Racute uni0156 Rcaron uni1E5A uni1E5C uni1E5E 105 | 0 106 | 59 S Sacute Scircumflex uni015E Scaron uni0218 uni1E60 uni1E62 107 | 0 108 | 40 T uni0162 Tcaron uni021A uni1E6C uni1E6E 109 | 0 110 | 5 Thorn 111 | 143 U Ugrave Uacute Ucircumflex Udieresis Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek uni01D3 uni01D5 uni01D7 uni01D9 uni01DB uni1EE4 uni1EE6 112 | 0 113 | 45 Uhorn uni1EE8 uni1EEA uni1EEC uni1EEE uni1EF0 114 | 1 V 115 | 0 116 | 37 W Wcircumflex Wgrave Wacute Wdieresis 117 | 0 118 | 1 X 119 | 0 120 | 69 Y Yacute Ycircumflex Ydieresis uni1E8E Ygrave uni1EF4 uni1EF6 uni1EF8 121 | 0 122 | 34 Z Zacute Zdotaccent Zcaron uni1E92 123 | 0 124 | 177 a agrave aacute acircumflex atilde adieresis aring amacron abreve aogonek uni01CE uni1EA1 uni1EA3 uni1EA5 uni1EA7 uni1EA9 uni1EAB uni1EAD uni1EAF uni1EB1 uni1EB3 uni1EB5 uni1EB7 125 | 170 q u ugrave uacute ucircumflex udieresis dotlessi utilde umacron ubreve uring uhungarumlaut uogonek uni01D4 uni01D6 uni01D8 uni01DA uni01DC uni0251 uni0261 uni1EE5 uni1EE7 126 | 156 e ae egrave eacute ecircumflex edieresis emacron ebreve edotaccent eogonek ecaron oe uni1E17 uni1EB9 uni1EBB uni1EBD uni1EBF uni1EC1 uni1EC3 uni1EC5 uni1EC7 127 | 195 b o p ograve oacute ocircumflex otilde odieresis oslash thorn omacron uni014F ohungarumlaut uni0180 uni01D2 uni01EB uni0259 uni1E07 uni1E53 uni1ECD uni1ECF uni1ED1 uni1ED3 uni1ED5 uni1ED7 uni1ED9 128 | 9 backslash 129 | 31 parenleft bracketleft braceleft 130 | 47 c ccedilla cacute ccircumflex cdotaccent ccaron 131 | 15 colon semicolon 132 | 21 comma period ellipsis 133 | 13 dcaron lcaron 134 | 47 hyphen uni00AD figuredash endash emdash uni2015 135 | 6 exclam 136 | 10 exclamdown 137 | 5 f f_f 138 | 48 t uni0163 tcaron uni021B uni1E6D uni1E6F uni1E97 139 | 54 g gcircumflex gbreve gdotaccent uni0123 gcaron uni1E21 140 | 10 germandbls 141 | 27 guillemotleft guilsinglleft 142 | 29 guillemotright guilsinglright 143 | 111 h m n ntilde hcircumflex hbar nacute uni0146 ncaron napostrophe uni1E25 uni1E2B uni1E43 uni1E45 uni1E47 uni1E49 144 | 0 145 | 30 k uni0137 kgreenlandic uni1E35 146 | 0 147 | 45 ohorn uni1EDB uni1EDD uni1EDF uni1EE1 uni1EE3 148 | 0 149 | 14 periodcentered 150 | 16 question uni203D 151 | 12 questiondown 152 | 20 quotedbl quotesingle 153 | 30 uni02BB quoteleft quotedblleft 154 | 32 uni02BC quoteright quotedblright 155 | 47 r racute uni0157 rcaron uni1E5B uni1E5D uni1E5F 156 | 59 s sacute scircumflex uni015F scaron uni0219 uni1E61 uni1E63 157 | 0 158 | 0 159 | 0 160 | 5 slash 161 | 45 uhorn uni1EE9 uni1EEB uni1EED uni1EEF uni1EF1 162 | 69 y yacute ydieresis ycircumflex uni1E8F ygrave uni1EF5 uni1EF7 uni1EF9 163 | 34 z zacute zdotaccent zcaron uni1E93 164 | 1 v 165 | 37 w wcircumflex wgrave wacute wdieresis 166 | 1 x 167 | 177 A Agrave Aacute Acircumflex Atilde Adieresis Aring Amacron Abreve Aogonek uni01CD uni1EA0 uni1EA2 uni1EA4 uni1EA6 uni1EA8 uni1EAA uni1EAC uni1EAE uni1EB0 uni1EB2 uni1EB4 uni1EB6 168 | 0 169 | 0 170 | 315 C G O Q Ccedilla Ograve Oacute Ocircumflex Otilde Odieresis Oslash Cacute Ccircumflex Cdotaccent Ccaron Gcircumflex Gbreve Gdotaccent uni0122 Omacron uni014E Ohungarumlaut OE Ohorn uni01D1 Gcaron uni01EA uni1E20 uni1E52 uni1ECC uni1ECE uni1ED0 uni1ED2 uni1ED4 uni1ED6 uni1ED8 uni1EDA uni1EDC uni1EDE uni1EE0 uni1EE2 171 | 0 172 | 18 Eth Dcroat uni0243 173 | 0 174 | 13 J Jcircumflex 175 | 0 176 | 59 S Sacute Scircumflex uni015E Scaron uni0218 uni1E60 uni1E62 177 | 0 178 | 40 T uni0162 Tcaron uni021A uni1E6C uni1E6E 179 | 0 180 | 189 U Ugrave Uacute Ucircumflex Udieresis Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek Uhorn uni01D3 uni01D5 uni01D7 uni01D9 uni01DB uni1EE4 uni1EE6 uni1EE8 uni1EEA uni1EEC uni1EEE uni1EF0 181 | 0 182 | 1 V 183 | 0 184 | 37 W Wcircumflex Wgrave Wacute Wdieresis 185 | 0 186 | 1 X 187 | 0 188 | 69 Y Yacute Ycircumflex Ydieresis uni1E8E Ygrave uni1EF4 uni1EF6 uni1EF8 189 | 0 190 | 34 Z Zacute Zdotaccent Zcaron uni1E92 191 | 0 192 | 180 a agrave aacute acircumflex atilde adieresis aring ae amacron abreve aogonek uni01CE uni1EA1 uni1EA3 uni1EA5 uni1EA7 uni1EA9 uni1EAB uni1EAD uni1EAF uni1EB1 uni1EB3 uni1EB5 uni1EB7 193 | 459 c d e o q ccedilla egrave eacute ecircumflex edieresis ograve oacute ocircumflex otilde odieresis oslash cacute ccircumflex cdotaccent ccaron dcaron dcroat emacron ebreve edotaccent eogonek ecaron omacron uni014F ohungarumlaut oe ohorn uni01D2 uni01EB uni0251 uni0261 uni1E0D uni1E0F uni1E17 uni1E53 uni1EB9 uni1EBB uni1EBD uni1EBF uni1EC1 uni1EC3 uni1EC5 uni1EC7 uni1ECD uni1ECF uni1ED1 uni1ED3 uni1ED5 uni1ED7 uni1ED9 uni1EDB uni1EDD uni1EDF uni1EE1 uni1EE3 194 | 8 asterisk 195 | 9 backslash 196 | 34 parenright bracketright braceright 197 | 15 colon semicolon 198 | 21 comma period ellipsis 199 | 136 m n p r ntilde dotlessi kgreenlandic nacute uni0146 ncaron racute uni0157 rcaron uni1E43 uni1E45 uni1E47 uni1E49 uni1E5B uni1E5D uni1E5F 200 | 47 hyphen uni00AD figuredash endash emdash uni2015 201 | 6 exclam 202 | 10 exclamdown 203 | 11 f f_f fi fl 204 | 0 205 | 54 g gcircumflex gbreve gdotaccent uni0123 gcaron uni1E21 206 | 27 guillemotleft guilsinglleft 207 | 29 guillemotright guilsinglright 208 | 0 209 | 92 i igrave iacute icircumflex idieresis itilde imacron uni012D iogonek uni01D0 uni1EC9 uni1ECB 210 | 21 j jcircumflex uni0237 211 | 0 212 | 0 213 | 0 214 | 0 215 | 14 periodcentered 216 | 16 question uni203D 217 | 12 questiondown 218 | 20 quotedbl quotesingle 219 | 30 uni02BB quoteleft quotedblleft 220 | 32 uni02BC quoteright quotedblright 221 | 10 registered 222 | 59 s sacute scircumflex uni015F scaron uni0219 uni1E61 uni1E63 223 | 0 224 | 0 225 | 0 226 | 5 slash 227 | 48 t uni0163 tcaron uni021B uni1E6D uni1E6F uni1E97 228 | 9 trademark 229 | 189 u ugrave uacute ucircumflex udieresis utilde umacron ubreve uring uhungarumlaut uogonek uhorn uni01D4 uni01D6 uni01D8 uni01DA uni01DC uni1EE5 uni1EE7 uni1EE9 uni1EEB uni1EED uni1EEF uni1EF1 230 | 69 y yacute ydieresis ycircumflex uni1E8F ygrave uni1EF5 uni1EF7 uni1EF9 231 | 34 z zacute zdotaccent zcaron uni1E93 232 | 1 v 233 | 37 w wcircumflex wgrave wacute wdieresis 234 | 1 x 235 | 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 20 {} -41 {} 0 {} -15 {} 14 {} -14 {} 16 {} 0 {} 15 {} 4 {} 20 {} -14 {} 13 {} -8 {} 25 {} 0 {} 0 {} -96 {} -41 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -25 {} -27 {} 0 {} -53 {} -59 {} -56 {} -82 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} -53 {} -6 {} -14 {} 0 {} -14 {} -4 {} 0 {} 0 {} 0 {} 14 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 7 {} 0 {} -6 {} -65 {} -37 {} 0 {} -10 {} 0 {} -10 {} 0 {} -6 {} 0 {} 10 {} 0 {} -31 {} 0 {} -3 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} -6 {} 0 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 6 {} 0 {} 0 {} 6 {} 0 {} 0 {} -16 {} -3 {} -14 {} 4 {} -25 {} 0 {} 0 {} 16 {} -6 {} 10 {} -4 {} 16 {} -4 {} 0 {} -14 {} 6 {} -4 {} 0 {} 0 {} 0 {} -31 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} -20 {} 0 {} -14 {} 0 {} -14 {} -10 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} 0 {} 0 {} 0 {} -4 {} 0 {} 0 {} 0 {} -4 {} 0 {} -4 {} 0 {} -4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 7 {} 0 {} -30 {} 0 {} 0 {} 0 {} -10 {} 0 {} -25 {} 0 {} -18 {} 0 {} -14 {} 0 {} -4 {} 0 {} -4 {} 0 {} -4 {} 15 {} -7 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -27 {} 0 {} 0 {} 0 {} 0 {} -20 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -53 {} 0 {} 0 {} 0 {} 0 {} 0 {} 14 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} 20 {} -10 {} -14 {} 0 {} -14 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} 0 {} 0 {} 0 {} -4 {} 0 {} -8 {} 0 {} -11 {} 0 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} 9 {} 0 {} 0 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 3 {} 0 {} 0 {} 15 {} 0 {} -14 {} -41 {} -25 {} 0 {} 9 {} -20 {} 6 {} 0 {} 16 {} -10 {} 11 {} -6 {} 16 {} -17 {} 6 {} -20 {} 13 {} -20 {} 4 {} 0 {} 0 {} -35 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 6 {} 0 {} 0 {} 0 {} 0 {} -14 {} 0 {} -27 {} 0 {} 0 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} 0 {} 0 {} -25 {} 0 {} 0 {} 0 {} -9 {} 0 {} -6 {} 0 {} -7 {} 0 {} -17 {} 0 {} -17 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -35 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -38 {} -41 {} 0 {} -10 {} 0 {} 0 {} -7 {} -141 {} -102 {} -20 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 4 {} 0 {} 0 {} 0 {} 0 {} 0 {} -31 {} -14 {} -35 {} -14 {} 0 {} 0 {} 0 {} 0 {} -74 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} -25 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} -16 {} -16 {} -31 {} 0 {} -16 {} 0 {} 0 {} 0 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -91 {} 0 {} -7 {} 0 {} 6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 6 {} 0 {} 0 {} 0 {} 13 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -76 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -4 {} 14 {} 0 {} 0 {} 19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} 0 {} 11 {} -14 {} 19 {} -4 {} 13 {} 0 {} 13 {} 0 {} 13 {} 0 {} 0 {} 0 {} 0 {} -29 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 15 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -3 {} 0 {} -3 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 6 {} 0 {} -4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 16 {} 0 {} 0 {} 0 {} 6 {} 0 {} 6 {} 0 {} 13 {} 0 {} 13 {} 0 {} 19 {} 0 {} 13 {} 0 {} 24 {} 0 {} 29 {} 0 {} 9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 16 {} 0 {} 0 {} 16 {} 0 {} 0 {} 0 {} 6 {} 0 {} 6 {} 0 {} 13 {} 0 {} 13 {} 0 {} 19 {} 0 {} 13 {} 0 {} 24 {} 0 {} 29 {} 0 {} 9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} 0 {} 0 {} -17 {} 0 {} -17 {} -17 {} 0 {} 0 {} 0 {} 6 {} 0 {} 0 {} 6 {} 0 {} 0 {} -40 {} -6 {} 0 {} 3 {} 0 {} 13 {} 0 {} 9 {} 0 {} 13 {} 0 {} 10 {} 0 {} 6 {} 0 {} 13 {} 0 {} 6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -25 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -35 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -28 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 20 {} 0 {} -23 {} 15 {} 0 {} 0 {} 0 {} 27 {} -14 {} 16 {} -16 {} 0 {} -14 {} 8 {} -12 {} 9 {} -10 {} 9 {} 0 {} -7 {} -16 {} -7 {} 0 {} 6 {} 0 {} -7 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} -31 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} -47 {} -7 {} 0 {} -20 {} -18 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -27 {} 15 {} -14 {} -20 {} -14 {} -20 {} -16 {} -16 {} 0 {} 0 {} 7 {} 0 {} 0 {} -7 {} 0 {} 0 {} 0 {} 4 {} 0 {} 0 {} 0 {} -5 {} 0 {} -6 {} 0 {} -7 {} 0 {} 0 {} 0 {} -4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 26 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 3 {} 16 {} 0 {} -27 {} 0 {} 0 {} 0 {} 0 {} 0 {} -23 {} 0 {} -123 {} -45 {} -30 {} 0 {} -78 {} -28 {} -57 {} -14 {} 0 {} 0 {} -78 {} -55 {} 0 {} 0 {} 0 {} -12 {} -156 {} -82 {} 0 {} 0 {} 0 {} 0 {} -55 {} 0 {} 0 {} -14 {} 0 {} -4 {} -35 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -94 {} -33 {} 0 {} -91 {} -80 {} -80 {} -94 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} -100 {} -10 {} -37 {} 0 {} -37 {} -35 {} 0 {} 0 {} 0 {} 16 {} 0 {} 0 {} -17 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} -82 {} 0 {} -31 {} 0 {} -61 {} 0 {} -38 {} 0 {} 0 {} 0 {} -61 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -41 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 6 {} 0 {} 0 {} 0 {} 0 {} -14 {} 0 {} 10 {} 0 {} 0 {} -4 {} 0 {} 0 {} 0 {} 0 {} -51 {} -47 {} 0 {} 0 {} 0 {} 0 {} -22 {} -150 {} -123 {} -10 {} 0 {} -25 {} 4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 13 {} -80 {} 0 {} -44 {} -25 {} 0 {} 0 {} 0 {} 0 {} -115 {} 0 {} -26 {} 0 {} 0 {} 0 {} 0 {} -31 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} -37 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -122 {} 0 {} -9 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -37 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -109 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 14 {} 0 {} 0 {} 6 {} 0 {} 0 {} -18 {} 4 {} -14 {} 0 {} -20 {} 6 {} 0 {} 6 {} -14 {} 13 {} 0 {} 13 {} -10 {} 6 {} -14 {} 16 {} -10 {} 10 {} -10 {} -10 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} -39 {} 0 {} 0 {} 0 {} 0 {} -10 {} -31 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} 0 {} 0 {} -14 {} 0 {} 0 {} 4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} -6 {} 0 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 19 {} 0 {} 0 {} 29 {} 0 {} 0 {} -14 {} -4 {} -14 {} 0 {} -20 {} 6 {} 0 {} 19 {} 0 {} 13 {} 0 {} 19 {} 0 {} 13 {} -7 {} 13 {} 0 {} 6 {} 0 {} 0 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} -10 {} 0 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -41 {} -65 {} 0 {} -25 {} -61 {} 0 {} 0 {} -129 {} -123 {} -40 {} -60 {} 0 {} -18 {} 0 {} -39 {} 0 {} -19 {} 0 {} -19 {} -20 {} -19 {} -14 {} -19 {} -55 {} -39 {} -75 {} -68 {} 0 {} 0 {} 0 {} 0 {} -109 {} -47 {} -82 {} 0 {} 0 {} -18 {} 0 {} -75 {} -48 {} -41 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -66 {} 0 {} 0 {} 0 {} 0 {} 0 {} 20 {} -60 {} 0 {} 0 {} 0 {} -91 {} -18 {} 35 {} -47 {} -34 {} -77 {} -34 {} -35 {} -40 {} 0 {} 0 {} -37 {} 0 {} 0 {} -27 {} 0 {} 0 {} 0 {} -116 {} 0 {} -34 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -30 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -89 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -47 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -35 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} -4 {} 0 {} 0 {} 6 {} 0 {} 0 {} -48 {} -34 {} -10 {} 6 {} 0 {} 10 {} 0 {} 6 {} -10 {} 6 {} 0 {} 10 {} -10 {} 13 {} -14 {} 19 {} 0 {} 0 {} -4 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -4 {} 0 {} 0 {} 0 {} -32 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -7 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -37 {} 0 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -25 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} -6 {} 54 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 20 {} -20 {} 0 {} 0 {} 0 {} -50 {} 0 {} 48 {} 0 {} 0 {} 0 {} 0 {} 0 {} -7 {} 0 {} -14 {} -4 {} -6 {} -10 {} -6 {} 0 {} 0 {} -75 {} -57 {} -16 {} 0 {} 0 {} 20 {} -10 {} 4 {} 0 {} 0 {} 0 {} 10 {} 0 {} 0 {} 0 {} 20 {} -19 {} 0 {} -23 {} -15 {} 0 {} 0 {} 0 {} 0 {} -67 {} -20 {} -19 {} 0 {} 0 {} 0 {} 0 {} -22 {} -22 {} -19 {} 0 {} -3 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -31 {} -9 {} -26 {} 0 {} -9 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} -65 {} 0 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -61 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 6 {} 0 {} -6 {} 4 {} 0 {} 0 {} -67 {} -47 {} -6 {} 0 {} 0 {} 20 {} 0 {} 10 {} 0 {} 16 {} 0 {} 16 {} 0 {} 16 {} 0 {} 27 {} -6 {} 4 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} -35 {} 0 {} -4 {} 0 {} 0 {} 0 {} 0 {} -13 {} -10 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 40 {} 0 {} 0 {} 0 {} 0 {} -30 {} 0 {} 35 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} 0 {} -6 {} 0 {} 0 {} 0 {} -60 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -44 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 3 {} 16 {} 6 {} -17 {} 6 {} 0 {} 0 {} -5 {} 20 {} -14 {} 6 {} -20 {} -7 {} -10 {} 6 {} 0 {} 0 {} 0 {} 6 {} 0 {} 0 {} 0 {} 13 {} 0 {} 6 {} -10 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -28 {} 0 {} 0 {} -16 {} 0 {} 0 {} -14 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -4 {} -7 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} -10 {} -16 {} -14 {} 0 {} -14 {} 0 {} 0 {} 0 {} 10 {} 0 {} 0 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} -28 {} -6 {} -14 {} -28 {} 0 {} 0 {} -102 {} -102 {} -16 {} -36 {} -14 {} 10 {} -10 {} -6 {} 0 {} 13 {} 0 {} 6 {} 0 {} 0 {} 0 {} 14 {} -27 {} -15 {} -69 {} -42 {} 0 {} 0 {} 0 {} -26 {} -93 {} -41 {} -68 {} 0 {} 0 {} 0 {} 0 {} -61 {} -56 {} -46 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -47 {} -7 {} 0 {} 0 {} 0 {} 9 {} 34 {} -42 {} 0 {} 0 {} 0 {} -69 {} -14 {} 47 {} -35 {} -14 {} -48 {} -14 {} -25 {} -35 {} 0 {} 0 {} -31 {} 0 {} 0 {} -17 {} 0 {} 0 {} 0 {} -95 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -83 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -35 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 7 {} 0 {} -20 {} -4 {} 0 {} 0 {} -34 {} 0 {} -31 {} 0 {} 0 {} 0 {} -10 {} 0 {} -6 {} -6 {} -6 {} 0 {} 0 {} 7 {} -14 {} 7 {} -10 {} 0 {} -16 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -35 {} 0 {} 0 {} -20 {} 0 {} -14 {} -35 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -61 {} 0 {} 0 {} 0 {} 0 {} 0 {} 20 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} 20 {} -24 {} -16 {} 0 {} -16 {} -16 {} 0 {} 0 {} 0 {} -3 {} 0 {} 0 {} -20 {} 0 {} 0 {} 0 {} -19 {} 0 {} -27 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -25 {} 0 {} 0 {} 0 {} -16 {} 0 {} -4 {} 0 {} 0 {} 0 {} -25 {} 0 {} 0 {} 0 {} 0 {} 0 {} -55 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} 0 {} 0 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} 0 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} -31 {} 0 {} 0 {} 0 {} 0 {} 0 {} -25 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} -20 {} 0 {} -25 {} 0 {} 0 {} 0 {} -16 {} 0 {} -10 {} 0 {} 0 {} 0 {} -27 {} 0 {} 0 {} 0 {} -14 {} 0 {} -35 {} -20 {} 0 {} 0 {} 0 {} 0 {} 6 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -4 {} -7 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} -17 {} 0 {} 5 {} 4 {} 5 {} 5 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -58 {} 0 {} 0 {} 0 {} -19 {} 0 {} 0 {} 0 {} -4 {} 0 {} -47 {} 0 {} 0 {} 0 {} -14 {} 0 {} 0 {} -27 {} 0 {} 0 {} -10 {} 0 {} 6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} 0 {} -14 {} -27 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -4 {} -6 {} -4 {} -4 {} -17 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -26 {} 0 {} 0 {} 0 {} 0 {} 0 {} -87 {} 0 {} -30 {} 0 {} 0 {} 0 {} -26 {} 0 {} 0 {} 0 {} -75 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 34 {} 0 {} 0 {} 0 {} 0 {} 75 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 13 {} 0 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 82 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} 0 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} -25 {} 0 {} 0 {} 0 {} -10 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 6 {} 0 {} 6 {} 6 {} 8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -27 {} 0 {} 0 {} 0 {} 0 {} 0 {} -50 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -27 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -109 {} -48 {} -20 {} -7 {} -74 {} -51 {} -35 {} -50 {} 0 {} 0 {} -94 {} -72 {} 0 {} 0 {} 0 {} -8 {} -141 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 27 {} -7 {} -31 {} -31 {} -28 {} 0 {} 0 {} 0 {} -98 {} -86 {} -106 {} 0 {} 0 {} -37 {} -37 {} -10 {} 0 {} -29 {} 0 {} 0 {} -20 {} 0 {} -36 {} -23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} 0 {} 0 {} 54 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} -9 {} 0 {} -12 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -26 {} 0 {} 0 {} 0 {} -27 {} 0 {} -4 {} 0 {} -27 {} 0 {} -68 {} 0 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -4 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -33 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} 0 {} 0 {} -46 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 34 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 47 {} 0 {} 0 {} 0 {} 55 {} 0 {} 47 {} 0 {} 34 {} 0 {} 47 {} 0 {} 0 {} 0 {} -20 {} -10 {} 0 {} 63 {} 50 {} 0 {} -51 {} 0 {} -14 {} 14 {} 0 {} 0 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} -20 {} 27 {} 0 {} 41 {} 35 {} 35 {} 77 {} -4 {} 0 {} 0 {} 0 {} -14 {} 0 {} 78 {} -15 {} 0 {} -14 {} 13 {} 0 {} -4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -4 {} 0 {} 0 {} 0 {} -18 {} -10 {} 0 {} 0 {} 0 {} 14 {} 14 {} 0 {} -27 {} 0 {} 0 {} 0 {} 0 {} -10 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} -27 {} 0 {} 0 {} 0 {} 0 {} 35 {} 0 {} 0 {} 0 {} 0 {} 14 {} 0 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -27 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} 0 {} 0 {} 0 {} -16 {} -14 {} -35 {} 0 {} 14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 38 {} 0 {} 0 {} 0 {} 0 {} -8 {} -37 {} 0 {} 0 {} 0 {} 0 {} 14 {} 0 {} 0 {} 0 {} 0 {} 49 {} 0 {} 0 {} 0 {} -4 {} -14 {} -4 {} -4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} -69 {} -49 {} -57 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} 0 {} -16 {} 0 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -41 {} 0 {} 0 {} 0 {} -17 {} 0 {} -17 {} 0 {} -7 {} 0 {} -46 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -31 {} 0 {} -31 {} 0 {} -47 {} 0 {} 0 {} 0 {} -22 {} 0 {} -10 {} 0 {} -14 {} 0 {} -56 {} 0 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -25 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -25 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} -35 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} 0 {} 0 {} -47 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} -35 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} -10 {} -18 {} -14 {} 0 {} 0 {} 0 {} 14 {} 0 {} -45 {} 0 {} 0 {} 0 {} 0 {} -10 {} -27 {} -7 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} -27 {} -12 {} 0 {} 0 {} 0 {} -27 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} -20 {} -14 {} 0 {} -7 {} 0 {} 0 {} -4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 20 {} 7 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 4 {} 0 {} 11 {} 9 {} 4 {} 27 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -4 {} 0 {} 0 {} -4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -25 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -25 {} 0 {} -66 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -59 {} 0 {} -39 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -63 {} 0 {} 0 {} -45 {} 0 {} 0 {} 0 {} 0 {} 0 {} -36 {} 0 {} -89 {} 0 {} -41 {} 0 {} 0 {} 0 {} -41 {} 0 {} 0 {} 0 {} -91 {} 0 {} 0 {} 0 {} -36 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -63 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 60 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -56 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -118 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -56 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -7 {} 0 {} 9 {} 0 {} 0 {} 0 {} -44 {} -34 {} 0 {} 0 {} 0 {} 0 {} -85 {} 0 {} 0 {} 0 {} -54 {} -14 {} 0 {} -34 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -136 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -59 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} -35 {} -34 {} 0 {} 0 {} 0 {} 0 {} -135 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} -34 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -50 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -56 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} -26 {} -10 {} 0 {} 13 {} 0 {} 0 {} -58 {} 0 {} -25 {} 0 {} 0 {} 0 {} 0 {} -10 {} -20 {} 0 {} 0 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} 0 {} 0 {} 35 {} -7 {} 63 {} -10 {} 0 {} 0 {} 0 {} -35 {} 0 {} 0 {} 0 {} 19 {} -10 {} 19 {} 13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -25 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} -50 {} 0 {} 0 {} 0 {} 0 {} 0 {} 10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -72 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -72 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -52 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -41 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -82 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -25 {} -32 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 26 {} 26 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 9 {} 0 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 50 {} 51 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 14 {} 17 {} 0 {} 0 {} 0 {} 0 {} 0 {} 9 {} 0 {} 48 {} 45 {} 25 {} 75 {} 0 {} 0 {} 0 {} 0 {} 0 {} 17 {} 0 {} 0 {} 10 {} 0 {} 10 {} 10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -41 {} 0 {} 0 {} 0 {} -20 {} 0 {} 0 {} 0 {} -4 {} 0 {} 0 {} 0 {} -4 {} 0 {} -7 {} 0 {} 0 {} 0 {} -20 {} -4 {} 0 {} 0 {} 0 {} 0 {} -36 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 46 {} 0 {} 0 {} 0 {} 0 {} -14 {} 0 {} 13 {} 0 {} 0 {} -25 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -27 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -4 {} 0 {} 0 {} 0 {} -24 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 26 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 13 {} -10 {} -4 {} 0 {} -4 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -41 {} 0 {} 0 {} 0 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -7 {} 0 {} -4 {} 0 {} -20 {} -4 {} 0 {} 0 {} 0 {} 0 {} -36 {} 0 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -25 {} 0 {} 0 {} 0 {} 0 {} -4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -31 {} 0 {} 0 {} 0 {} -25 {} 0 {} 0 {} 0 {} -4 {} 0 {} 0 {} 0 {} -14 {} 0 {} -11 {} 0 {} 0 {} 0 {} -10 {} -4 {} -8 {} 0 {} 0 {} 0 {} -42 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 39 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 14 {} 0 {} 0 {} -17 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} -4 {} 0 {} -34 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} 0 {} 0 {} 0 {} -10 {} -17 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} -25 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} 236 | ChainSub2: coverage "'ccmp' Glyph Composition/Decomposition lookup 8 contextual 2" 0 0 0 1 237 | 1 0 3 238 | Coverage: 31 uni0249 uni03F3 uni0456 uni0458 239 | FCoverage: 271 uni0316 uni0317 uni0318 uni0319 uni031C uni031D uni031E uni031F uni0320 uni0321 uni0322 uni0324 uni0325 uni0326 uni0327 uni0328 uni0329 uni032A uni032B uni032C uni032D uni032E uni032F uni0330 uni0331 uni0332 uni0333 uni0339 uni033A uni033B uni033C uni0345 uni0347 uni0353 240 | FCoverage: 271 uni0316 uni0317 uni0318 uni0319 uni031C uni031D uni031E uni031F uni0320 uni0321 uni0322 uni0324 uni0325 uni0326 uni0327 uni0328 uni0329 uni032A uni032B uni032C uni032D uni032E uni032F uni0330 uni0331 uni0332 uni0333 uni0339 uni033A uni033B uni033C uni0345 uni0347 uni0353 241 | FCoverage: 307 gravecomb acutecomb uni0302 tildecomb uni0304 uni0305 uni0306 uni0307 uni0308 hookabovecomb uni030A uni030B uni030C uni030D uni030E uni030F uni0310 uni0311 uni0312 uni0313 uni0314 uni033D uni033E uni033F uni0340 uni0341 uni0342 uni0343 uni0344 uni0346 uni0351 uni0352 uni0357 uni0483 uni0484 uni0485 uni0486 242 | 1 243 | SeqLookup: 0 "Single Substitution lookup 7" 244 | EndFPST 245 | ChainSub2: coverage "'ccmp' Glyph Composition/Decomposition lookup 8 contextual 1" 0 0 0 1 246 | 1 0 2 247 | Coverage: 31 uni0249 uni03F3 uni0456 uni0458 248 | FCoverage: 271 uni0316 uni0317 uni0318 uni0319 uni031C uni031D uni031E uni031F uni0320 uni0321 uni0322 uni0324 uni0325 uni0326 uni0327 uni0328 uni0329 uni032A uni032B uni032C uni032D uni032E uni032F uni0330 uni0331 uni0332 uni0333 uni0339 uni033A uni033B uni033C uni0345 uni0347 uni0353 249 | FCoverage: 307 gravecomb acutecomb uni0302 tildecomb uni0304 uni0305 uni0306 uni0307 uni0308 hookabovecomb uni030A uni030B uni030C uni030D uni030E uni030F uni0310 uni0311 uni0312 uni0313 uni0314 uni033D uni033E uni033F uni0340 uni0341 uni0342 uni0343 uni0344 uni0346 uni0351 uni0352 uni0357 uni0483 uni0484 uni0485 uni0486 250 | 1 251 | SeqLookup: 0 "Single Substitution lookup 7" 252 | EndFPST 253 | ChainSub2: coverage "'ccmp' Glyph Composition/Decomposition lookup 8 contextual 0" 0 0 0 1 254 | 1 0 1 255 | Coverage: 31 uni0249 uni03F3 uni0456 uni0458 256 | FCoverage: 307 gravecomb acutecomb uni0302 tildecomb uni0304 uni0305 uni0306 uni0307 uni0308 hookabovecomb uni030A uni030B uni030C uni030D uni030E uni030F uni0310 uni0311 uni0312 uni0313 uni0314 uni033D uni033E uni033F uni0340 uni0341 uni0342 uni0343 uni0344 uni0346 uni0351 uni0352 uni0357 uni0483 uni0484 uni0485 uni0486 257 | 1 258 | SeqLookup: 0 "Single Substitution lookup 7" 259 | EndFPST 260 | TtTable: prep 261 | PUSHW_1 262 | 511 263 | SCANCTRL 264 | PUSHB_1 265 | 1 266 | SCANTYPE 267 | SVTCA[y-axis] 268 | MPPEM 269 | PUSHB_1 270 | 8 271 | LT 272 | IF 273 | PUSHB_2 274 | 1 275 | 1 276 | INSTCTRL 277 | EIF 278 | PUSHB_2 279 | 70 280 | 6 281 | CALL 282 | IF 283 | POP 284 | PUSHB_1 285 | 16 286 | EIF 287 | MPPEM 288 | PUSHB_1 289 | 20 290 | GT 291 | IF 292 | POP 293 | PUSHB_1 294 | 128 295 | EIF 296 | SCVTCI 297 | PUSHB_1 298 | 6 299 | CALL 300 | NOT 301 | IF 302 | EIF 303 | PUSHB_1 304 | 20 305 | CALL 306 | EndTTInstrs 307 | TtTable: fpgm 308 | PUSHB_1 309 | 0 310 | FDEF 311 | PUSHB_1 312 | 0 313 | SZP0 314 | MPPEM 315 | PUSHB_1 316 | 42 317 | LT 318 | IF 319 | PUSHB_1 320 | 74 321 | SROUND 322 | EIF 323 | PUSHB_1 324 | 0 325 | SWAP 326 | MIAP[rnd] 327 | RTG 328 | PUSHB_1 329 | 6 330 | CALL 331 | IF 332 | RTDG 333 | EIF 334 | MPPEM 335 | PUSHB_1 336 | 42 337 | LT 338 | IF 339 | RDTG 340 | EIF 341 | DUP 342 | MDRP[rp0,rnd,grey] 343 | PUSHB_1 344 | 1 345 | SZP0 346 | MDAP[no-rnd] 347 | RTG 348 | ENDF 349 | PUSHB_1 350 | 1 351 | FDEF 352 | DUP 353 | MDRP[rp0,min,white] 354 | PUSHB_1 355 | 12 356 | CALL 357 | ENDF 358 | PUSHB_1 359 | 2 360 | FDEF 361 | MPPEM 362 | GT 363 | IF 364 | RCVT 365 | SWAP 366 | EIF 367 | POP 368 | ENDF 369 | PUSHB_1 370 | 3 371 | FDEF 372 | ROUND[Black] 373 | RTG 374 | DUP 375 | PUSHB_1 376 | 64 377 | LT 378 | IF 379 | POP 380 | PUSHB_1 381 | 64 382 | EIF 383 | ENDF 384 | PUSHB_1 385 | 4 386 | FDEF 387 | PUSHB_1 388 | 6 389 | CALL 390 | IF 391 | POP 392 | SWAP 393 | POP 394 | ROFF 395 | IF 396 | MDRP[rp0,min,rnd,black] 397 | ELSE 398 | MDRP[min,rnd,black] 399 | EIF 400 | ELSE 401 | MPPEM 402 | GT 403 | IF 404 | IF 405 | MIRP[rp0,min,rnd,black] 406 | ELSE 407 | MIRP[min,rnd,black] 408 | EIF 409 | ELSE 410 | SWAP 411 | POP 412 | PUSHB_1 413 | 5 414 | CALL 415 | IF 416 | PUSHB_1 417 | 70 418 | SROUND 419 | EIF 420 | IF 421 | MDRP[rp0,min,rnd,black] 422 | ELSE 423 | MDRP[min,rnd,black] 424 | EIF 425 | EIF 426 | EIF 427 | RTG 428 | ENDF 429 | PUSHB_1 430 | 5 431 | FDEF 432 | GFV 433 | NOT 434 | AND 435 | ENDF 436 | PUSHB_1 437 | 6 438 | FDEF 439 | PUSHB_2 440 | 34 441 | 1 442 | GETINFO 443 | LT 444 | IF 445 | PUSHB_1 446 | 32 447 | GETINFO 448 | NOT 449 | NOT 450 | ELSE 451 | PUSHB_1 452 | 0 453 | EIF 454 | ENDF 455 | PUSHB_1 456 | 7 457 | FDEF 458 | PUSHB_2 459 | 36 460 | 1 461 | GETINFO 462 | LT 463 | IF 464 | PUSHB_1 465 | 64 466 | GETINFO 467 | NOT 468 | NOT 469 | ELSE 470 | PUSHB_1 471 | 0 472 | EIF 473 | ENDF 474 | PUSHB_1 475 | 8 476 | FDEF 477 | SRP2 478 | SRP1 479 | DUP 480 | IP 481 | MDAP[rnd] 482 | ENDF 483 | PUSHB_1 484 | 9 485 | FDEF 486 | DUP 487 | RDTG 488 | PUSHB_1 489 | 6 490 | CALL 491 | IF 492 | MDRP[rnd,grey] 493 | ELSE 494 | MDRP[min,rnd,black] 495 | EIF 496 | DUP 497 | PUSHB_1 498 | 3 499 | CINDEX 500 | MD[grid] 501 | SWAP 502 | DUP 503 | PUSHB_1 504 | 4 505 | MINDEX 506 | MD[orig] 507 | PUSHB_1 508 | 0 509 | LT 510 | IF 511 | ROLL 512 | NEG 513 | ROLL 514 | SUB 515 | DUP 516 | PUSHB_1 517 | 0 518 | LT 519 | IF 520 | SHPIX 521 | ELSE 522 | POP 523 | POP 524 | EIF 525 | ELSE 526 | ROLL 527 | ROLL 528 | SUB 529 | DUP 530 | PUSHB_1 531 | 0 532 | GT 533 | IF 534 | SHPIX 535 | ELSE 536 | POP 537 | POP 538 | EIF 539 | EIF 540 | RTG 541 | ENDF 542 | PUSHB_1 543 | 10 544 | FDEF 545 | PUSHB_1 546 | 6 547 | CALL 548 | IF 549 | POP 550 | SRP0 551 | ELSE 552 | SRP0 553 | POP 554 | EIF 555 | ENDF 556 | PUSHB_1 557 | 11 558 | FDEF 559 | DUP 560 | MDRP[rp0,white] 561 | PUSHB_1 562 | 12 563 | CALL 564 | ENDF 565 | PUSHB_1 566 | 12 567 | FDEF 568 | DUP 569 | MDAP[rnd] 570 | PUSHB_1 571 | 7 572 | CALL 573 | NOT 574 | IF 575 | DUP 576 | DUP 577 | GC[orig] 578 | SWAP 579 | GC[cur] 580 | SUB 581 | ROUND[White] 582 | DUP 583 | IF 584 | DUP 585 | ABS 586 | DIV 587 | SHPIX 588 | ELSE 589 | POP 590 | POP 591 | EIF 592 | ELSE 593 | POP 594 | EIF 595 | ENDF 596 | PUSHB_1 597 | 13 598 | FDEF 599 | SRP2 600 | SRP1 601 | DUP 602 | DUP 603 | IP 604 | MDAP[rnd] 605 | DUP 606 | ROLL 607 | DUP 608 | GC[orig] 609 | ROLL 610 | GC[cur] 611 | SUB 612 | SWAP 613 | ROLL 614 | DUP 615 | ROLL 616 | SWAP 617 | MD[orig] 618 | PUSHB_1 619 | 0 620 | LT 621 | IF 622 | SWAP 623 | PUSHB_1 624 | 0 625 | GT 626 | IF 627 | PUSHB_1 628 | 64 629 | SHPIX 630 | ELSE 631 | POP 632 | EIF 633 | ELSE 634 | SWAP 635 | PUSHB_1 636 | 0 637 | LT 638 | IF 639 | PUSHB_1 640 | 64 641 | NEG 642 | SHPIX 643 | ELSE 644 | POP 645 | EIF 646 | EIF 647 | ENDF 648 | PUSHB_1 649 | 14 650 | FDEF 651 | PUSHB_1 652 | 6 653 | CALL 654 | IF 655 | RTDG 656 | MDRP[rp0,rnd,white] 657 | RTG 658 | POP 659 | POP 660 | ELSE 661 | DUP 662 | MDRP[rp0,rnd,white] 663 | ROLL 664 | MPPEM 665 | GT 666 | IF 667 | DUP 668 | ROLL 669 | SWAP 670 | MD[grid] 671 | DUP 672 | PUSHB_1 673 | 0 674 | NEQ 675 | IF 676 | SHPIX 677 | ELSE 678 | POP 679 | POP 680 | EIF 681 | ELSE 682 | POP 683 | POP 684 | EIF 685 | EIF 686 | ENDF 687 | PUSHB_1 688 | 15 689 | FDEF 690 | SWAP 691 | DUP 692 | MDRP[rp0,rnd,white] 693 | DUP 694 | MDAP[rnd] 695 | PUSHB_1 696 | 7 697 | CALL 698 | NOT 699 | IF 700 | SWAP 701 | DUP 702 | IF 703 | MPPEM 704 | GTEQ 705 | ELSE 706 | POP 707 | PUSHB_1 708 | 1 709 | EIF 710 | IF 711 | ROLL 712 | PUSHB_1 713 | 4 714 | MINDEX 715 | MD[grid] 716 | SWAP 717 | ROLL 718 | SWAP 719 | DUP 720 | ROLL 721 | MD[grid] 722 | ROLL 723 | SWAP 724 | SUB 725 | SHPIX 726 | ELSE 727 | POP 728 | POP 729 | POP 730 | POP 731 | EIF 732 | ELSE 733 | POP 734 | POP 735 | POP 736 | POP 737 | POP 738 | EIF 739 | ENDF 740 | PUSHB_1 741 | 16 742 | FDEF 743 | DUP 744 | MDRP[rp0,min,white] 745 | PUSHB_1 746 | 18 747 | CALL 748 | ENDF 749 | PUSHB_1 750 | 17 751 | FDEF 752 | DUP 753 | MDRP[rp0,white] 754 | PUSHB_1 755 | 18 756 | CALL 757 | ENDF 758 | PUSHB_1 759 | 18 760 | FDEF 761 | DUP 762 | MDAP[rnd] 763 | PUSHB_1 764 | 7 765 | CALL 766 | NOT 767 | IF 768 | DUP 769 | DUP 770 | GC[orig] 771 | SWAP 772 | GC[cur] 773 | SUB 774 | ROUND[White] 775 | ROLL 776 | DUP 777 | GC[orig] 778 | SWAP 779 | GC[cur] 780 | SWAP 781 | SUB 782 | ROUND[White] 783 | ADD 784 | DUP 785 | IF 786 | DUP 787 | ABS 788 | DIV 789 | SHPIX 790 | ELSE 791 | POP 792 | POP 793 | EIF 794 | ELSE 795 | POP 796 | POP 797 | EIF 798 | ENDF 799 | PUSHB_1 800 | 19 801 | FDEF 802 | DUP 803 | ROLL 804 | DUP 805 | ROLL 806 | SDPVTL[orthog] 807 | DUP 808 | PUSHB_1 809 | 3 810 | CINDEX 811 | MD[orig] 812 | ABS 813 | SWAP 814 | ROLL 815 | SPVTL[orthog] 816 | PUSHB_1 817 | 32 818 | LT 819 | IF 820 | ALIGNRP 821 | ELSE 822 | MDRP[grey] 823 | EIF 824 | ENDF 825 | PUSHB_1 826 | 20 827 | FDEF 828 | PUSHB_4 829 | 0 830 | 64 831 | 1 832 | 64 833 | WS 834 | WS 835 | SVTCA[x-axis] 836 | MPPEM 837 | PUSHW_1 838 | 4096 839 | MUL 840 | SVTCA[y-axis] 841 | MPPEM 842 | PUSHW_1 843 | 4096 844 | MUL 845 | DUP 846 | ROLL 847 | DUP 848 | ROLL 849 | NEQ 850 | IF 851 | DUP 852 | ROLL 853 | DUP 854 | ROLL 855 | GT 856 | IF 857 | SWAP 858 | DIV 859 | DUP 860 | PUSHB_1 861 | 0 862 | SWAP 863 | WS 864 | ELSE 865 | DIV 866 | DUP 867 | PUSHB_1 868 | 1 869 | SWAP 870 | WS 871 | EIF 872 | DUP 873 | PUSHB_1 874 | 64 875 | GT 876 | IF 877 | PUSHB_3 878 | 0 879 | 32 880 | 0 881 | RS 882 | MUL 883 | WS 884 | PUSHB_3 885 | 1 886 | 32 887 | 1 888 | RS 889 | MUL 890 | WS 891 | PUSHB_1 892 | 32 893 | MUL 894 | PUSHB_1 895 | 25 896 | NEG 897 | JMPR 898 | POP 899 | EIF 900 | ELSE 901 | POP 902 | POP 903 | EIF 904 | ENDF 905 | PUSHB_1 906 | 21 907 | FDEF 908 | PUSHB_1 909 | 1 910 | RS 911 | MUL 912 | SWAP 913 | PUSHB_1 914 | 0 915 | RS 916 | MUL 917 | SWAP 918 | ENDF 919 | EndTTInstrs 920 | ShortTable: cvt 7 921 | -220 922 | 0 923 | 520 924 | 730 925 | 750 926 | 33 927 | 633 928 | EndShort 929 | ShortTable: maxp 16 930 | 1 931 | 0 932 | 19274 933 | 612 934 | 41 935 | 0 936 | 0 937 | 2 938 | 1 939 | 2 940 | 22 941 | 0 942 | 256 943 | 0 944 | 0 945 | 0 946 | EndShort 947 | LangName: 1033 "[Source Han Sans]+AAoA-Copyright +AKkA 2014, 2015 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name 'Source'.+AAoACgAA[M+- OUTLINE FONTS]+AAoA-Copyright(c) 2015 M+- FONTS PROJECT" "" "Regular" "1.002.20150607;MM;GenJyuuGothicL-Monospace-Regular;MM" "" "Version 1.002.20150607" "" "Source is a trademark of Adobe Systems Incorporated in the United States and/or other countries." "" "[Source Han Sans]+AAoA-Ryoko NISHIZUKA +iX9YWm28W1AA (kana & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Wenlong ZHANG +XyBlh5+Z (bopomofo); Sandoll Communication +wLCzzM7ku6SyyM8Ax3TBWAAA, Soo-young JANG +x6XCGMYB & Joo-yeon KANG +rBXI/MXw (hangul elements, letters & syllables)+AAoACgAA[M+- OUTLINE FONTS]+AAoA-Coji Morishita +aO5OC21pU/gA (coz)" "Dr. Ken Lunde (project architect, glyph set definition & overall production); Masataka HATTORI +Zw2Q6GtjjLQA (production & ideograph elements)" "http://jikasei.me/" "" "This Font Software is licensed under the SIL Open Font License, Version 1.1. This Font Software is distributed on an +ACIA-AS IS+ACIA BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the SIL Open Font License for the specific language, permissions and limitations governing your use of this Font Software." "http://scripts.sil.org/OFL" "" "Gen Jyuu Gothic L Monospace" "Regular" 948 | LangName: 1041 "" "+bpBn1DC0MLcwwzCv-L+e0leRQAA Regular" "" "" "+bpBn1DC0MLcwwzCv-L+e0leRQAA Regular" "" "" "" "" "" "" "" "" "" "" "" "+bpBn1DC0MLcwwzCv-L+e0leRQAA" "Regular" 949 | GaspTable: 1 65535 2 0 950 | Encoding: UnicodeFull 951 | UnicodeInterp: none 952 | NameList: AGL For New Fonts 953 | DisplaySize: -48 954 | AntiAlias: 1 955 | FitToEm: 0 956 | WinInfo: 12240 12 5 957 | AnchorClass2: "Anchor-0" "'mkmk' Mark to Mark lookup 1 subtable" "Anchor-1" "'mark' Mark Positioning lookup 2 subtable" "Anchor-2" "'mark' Mark Positioning lookup 3 subtable" "Anchor-3" "'mkmk' Mark to Mark lookup 4 subtable" 958 | BeginChars: 1115675 1 959 | 960 | StartChar: uni3000 961 | Encoding: 12288 12288 0 962 | Width: 1024 963 | Flags: W 964 | LayerCount: 2 965 | Fore 966 | SplineSet 967 | 272 736 m 1,0,-1 968 | 272 680 l 1,1,-1 969 | 259 680 l 2,2,3 970 | 242.754262213 680 242.754262213 680 232.444021661 668.793216791 c 128,-1,4 971 | 222 657.441019333 222 657.441019333 222 642 c 2,5,-1 972 | 222 630 l 1,6,-1 973 | 166 630 l 1,7,-1 974 | 166 642 l 2,8,9 975 | 166 680.6088599 166 680.6088599 192.1721275 707.8278725 c 0,10,11 976 | 218.260384732 733.916129732 218.260384732 733.916129732 258.792193507 735.994684028 c 1,12,-1 977 | 259 736 l 1,13,-1 978 | 272 736 l 1,0,-1 979 | 574 736 m 1,14,-1 980 | 574 680 l 1,15,-1 981 | 450 680 l 1,16,-1 982 | 450 736 l 1,17,-1 983 | 574 736 l 1,14,-1 984 | 752 736 m 1,18,-1 985 | 765 736 l 2,19,20 986 | 805.746626819 736 805.746626819 736 831.935277367 707.716257408 c 128,-1,21 987 | 858 679.566356965 858 679.566356965 858 642 c 2,22,-1 988 | 858 630 l 1,23,-1 989 | 802 630 l 1,24,-1 990 | 802 642 l 2,25,26 991 | 802 656.437185103 802 656.437185103 791.060521271 668.288287059 c 128,-1,27 992 | 780.249709325 680 780.249709325 680 765 680 c 2,28,-1 993 | 752 680 l 1,29,-1 994 | 752 736 l 1,18,-1 995 | 272 42 m 1,30,-1 996 | 259 42 l 2,31,32 997 | 218.253373181 42 218.253373181 42 192.064722633 70.2837425915 c 128,-1,33 998 | 166 98.4336430352 166 98.4336430352 166 136 c 2,34,-1 999 | 166 148 l 1,35,-1 1000 | 222 148 l 1,36,-1 1001 | 222 136 l 2,37,38 1002 | 222 121.562814897 222 121.562814897 232.939478729 109.711712941 c 128,-1,39 1003 | 243.750290675 98 243.750290675 98 259 98 c 2,40,-1 1004 | 272 98 l 1,41,-1 1005 | 272 42 l 1,30,-1 1006 | 574 42 m 1,42,-1 1007 | 450 42 l 1,43,-1 1008 | 450 98 l 1,44,-1 1009 | 574 98 l 1,45,-1 1010 | 574 42 l 1,42,-1 1011 | 752 42 m 1,46,-1 1012 | 752 98 l 1,47,-1 1013 | 765 98 l 2,48,49 1014 | 780.249709325 98 780.249709325 98 791.060521271 109.711712941 c 0,50,51 1015 | 802 122.478627426 802 122.478627426 802 136 c 2,52,-1 1016 | 802 148 l 1,53,-1 1017 | 858 148 l 1,54,-1 1018 | 858 136 l 2,55,56 1019 | 858 95.2973699 858 95.2973699 831.8278725 70.1721275 c 0,57,58 1020 | 805.739615268 44.0838702684 805.739615268 44.0838702684 765.207806493 42.0053159722 c 1,59,-1 1021 | 765 42 l 1,60,-1 1022 | 752 42 l 1,46,-1 1023 | 166 452 m 1,61,-1 1024 | 222 452 l 1,62,-1 1025 | 222 328 l 1,63,-1 1026 | 166 328 l 1,64,-1 1027 | 166 452 l 1,61,-1 1028 | 858 452 m 1,65,-1 1029 | 858 328 l 1,66,-1 1030 | 802 328 l 1,67,-1 1031 | 802 452 l 1,68,-1 1032 | 858 452 l 1,65,-1 1033 | EndSplineSet 1034 | EndChar 1035 | EndChars 1036 | EndSplineFont 1037 | -------------------------------------------------------------------------------- /source/LICENSE_GenJyuuGothic: -------------------------------------------------------------------------------- 1 | Copyright (c) 2015 自家製フォント工房 2 | 3 | This Font Software is licensed under the SIL Open Font License, Version 1.1. 4 | This license is copied below, and is also available with a FAQ at: 5 | http://scripts.sil.org/OFL 6 | 7 | 8 | ----------------------------------------------------------- 9 | SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 10 | ----------------------------------------------------------- 11 | 12 | PREAMBLE 13 | The goals of the Open Font License (OFL) are to stimulate worldwide 14 | development of collaborative font projects, to support the font creation 15 | efforts of academic and linguistic communities, and to provide a free and 16 | open framework in which fonts may be shared and improved in partnership 17 | with others. 18 | 19 | The OFL allows the licensed fonts to be used, studied, modified and 20 | redistributed freely as long as they are not sold by themselves. The 21 | fonts, including any derivative works, can be bundled, embedded, 22 | redistributed and/or sold with any software provided that any reserved 23 | names are not used by derivative works. The fonts and derivatives, 24 | however, cannot be released under any other type of license. The 25 | requirement for fonts to remain under this license does not apply 26 | to any document created using the fonts or their derivatives. 27 | 28 | DEFINITIONS 29 | "Font Software" refers to the set of files released by the Copyright 30 | Holder(s) under this license and clearly marked as such. This may 31 | include source files, build scripts and documentation. 32 | 33 | "Reserved Font Name" refers to any names specified as such after the 34 | copyright statement(s). 35 | 36 | "Original Version" refers to the collection of Font Software components as 37 | distributed by the Copyright Holder(s). 38 | 39 | "Modified Version" refers to any derivative made by adding to, deleting, 40 | or substituting -- in part or in whole -- any of the components of the 41 | Original Version, by changing formats or by porting the Font Software to a 42 | new environment. 43 | 44 | "Author" refers to any designer, engineer, programmer, technical 45 | writer or other person who contributed to the Font Software. 46 | 47 | PERMISSION & CONDITIONS 48 | Permission is hereby granted, free of charge, to any person obtaining 49 | a copy of the Font Software, to use, study, copy, merge, embed, modify, 50 | redistribute, and sell modified and unmodified copies of the Font 51 | Software, subject to the following conditions: 52 | 53 | 1) Neither the Font Software nor any of its individual components, 54 | in Original or Modified Versions, may be sold by itself. 55 | 56 | 2) Original or Modified Versions of the Font Software may be bundled, 57 | redistributed and/or sold with any software, provided that each copy 58 | contains the above copyright notice and this license. These can be 59 | included either as stand-alone text files, human-readable headers or 60 | in the appropriate machine-readable metadata fields within text or 61 | binary files as long as those fields can be easily viewed by the user. 62 | 63 | 3) No Modified Version of the Font Software may use the Reserved Font 64 | Name(s) unless explicit written permission is granted by the corresponding 65 | Copyright Holder. This restriction only applies to the primary font name as 66 | presented to the users. 67 | 68 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font 69 | Software shall not be used to promote, endorse or advertise any 70 | Modified Version, except to acknowledge the contribution(s) of the 71 | Copyright Holder(s) and the Author(s) or with their explicit written 72 | permission. 73 | 74 | 5) The Font Software, modified or unmodified, in part or in whole, 75 | must be distributed entirely under this license, and must not be 76 | distributed under any other license. The requirement for fonts to 77 | remain under this license does not apply to any document created 78 | using the Font Software. 79 | 80 | TERMINATION 81 | This license becomes null and void if any of the above conditions are 82 | not met. 83 | 84 | DISCLAIMER 85 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 86 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF 87 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT 88 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE 89 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 90 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL 91 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 92 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM 93 | OTHER DEALINGS IN THE FONT SOFTWARE. 94 | -------------------------------------------------------------------------------- /source/LICENSE_Hack: -------------------------------------------------------------------------------- 1 | The work in the Hack project is Copyright 2018 Source Foundry Authors and licensed under the MIT License 2 | 3 | The work in the DejaVu project was committed to the public domain. 4 | 5 | Bitstream Vera Sans Mono Copyright 2003 Bitstream Inc. and licensed under the Bitstream Vera License with Reserved Font Names "Bitstream" and "Vera" 6 | 7 | ### MIT License 8 | 9 | Copyright (c) 2018 Source Foundry Authors 10 | 11 | Permission is hereby granted, free of charge, to any person obtaining a copy 12 | of this software and associated documentation files (the "Software"), to deal 13 | in the Software without restriction, including without limitation the rights 14 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 15 | copies of the Software, and to permit persons to whom the Software is 16 | furnished to do so, subject to the following conditions: 17 | 18 | The above copyright notice and this permission notice shall be included in all 19 | copies or substantial portions of the Software. 20 | 21 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 22 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 23 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 24 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 25 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 26 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 27 | SOFTWARE. 28 | 29 | ### BITSTREAM VERA LICENSE 30 | 31 | Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. Bitstream Vera is a trademark of Bitstream, Inc. 32 | 33 | Permission is hereby granted, free of charge, to any person obtaining a copy of the fonts accompanying this license ("Fonts") and associated documentation files (the "Font Software"), to reproduce and distribute the Font Software, including without limitation the rights to use, copy, merge, publish, distribute, and/or sell copies of the Font Software, and to permit persons to whom the Font Software is furnished to do so, subject to the following conditions: 34 | 35 | The above copyright and trademark notices and this permission notice shall be included in all copies of one or more of the Font Software typefaces. 36 | 37 | The Font Software may be modified, altered, or added to, and in particular the designs of glyphs or characters in the Fonts may be modified and additional glyphs or characters may be added to the Fonts, only if the fonts are renamed to names not containing either the words "Bitstream" or the word "Vera". 38 | 39 | This License becomes null and void to the extent applicable to Fonts or Font Software that has been modified and is distributed under the "Bitstream Vera" names. 40 | 41 | The Font Software may be sold as part of a larger software package but no copy of one or more of the Font Software typefaces may be sold by itself. 42 | 43 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL BITSTREAM OR THE GNOME FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. 44 | 45 | Except as contained in this notice, the names of Gnome, the Gnome Foundation, and Bitstream Inc., shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Font Software without prior written authorization from the Gnome Foundation or Bitstream Inc., respectively. For further information, contact: fonts at gnome dot org. 46 | -------------------------------------------------------------------------------- /source/LICENSE_NerdFonts: -------------------------------------------------------------------------------- 1 | # Nerd Fonts Licensing 2 | 3 | There are various sources used under various licenses: 4 | 5 | * Nerd Fonts source fonts, patched fonts, and folders with explict OFL SIL files are licensed under SIL OPEN FONT LICENSE Version 1.1 (see below). 6 | * Nerd Fonts original source code files (such as `.sh`, `.py`, `font-patcher` and others) are licensed under the MIT License (MIT) (see below). 7 | * Many other licenses are present in this project for even more detailed breakdown see: [License Audit](https://github.com/ryanoasis/nerd-fonts/blob/-/license-audit.md). 8 | 9 | ## Source files not in folders containing an explicit license are using the MIT License (MIT) 10 | 11 | The MIT License (MIT) 12 | 13 | Copyright (c) 2014 Ryan L McIntyre 14 | 15 | Permission is hereby granted, free of charge, to any person obtaining a copy 16 | of this software and associated documentation files (the "Software"), to deal 17 | in the Software without restriction, including without limitation the rights 18 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 19 | copies of the Software, and to permit persons to whom the Software is 20 | furnished to do so, subject to the following conditions: 21 | 22 | The above copyright notice and this permission notice shall be included in all 23 | copies or substantial portions of the Software. 24 | 25 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 26 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 27 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 28 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 29 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 30 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 31 | SOFTWARE. 32 | 33 | ## Various Fonts, Patched Fonts, SVGs, Glyph Fonts, and any files in a folder with explicit SIL OFL 1.1 License 34 | 35 | Copyright (c) 2014, Ryan L McIntyre (https://ryanlmcintyre.com). 36 | 37 | This Font Software is licensed under the SIL Open Font License, Version 1.1. 38 | This license is copied below, and is also available with a FAQ at: 39 | http://scripts.sil.org/OFL 40 | 41 | ----------------------------------------------------------- 42 | SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 43 | ----------------------------------------------------------- 44 | 45 | PREAMBLE 46 | The goals of the Open Font License (OFL) are to stimulate worldwide 47 | development of collaborative font projects, to support the font creation 48 | efforts of academic and linguistic communities, and to provide a free and 49 | open framework in which fonts may be shared and improved in partnership 50 | with others. 51 | 52 | The OFL allows the licensed fonts to be used, studied, modified and 53 | redistributed freely as long as they are not sold by themselves. The 54 | fonts, including any derivative works, can be bundled, embedded, 55 | redistributed and/or sold with any software provided that any reserved 56 | names are not used by derivative works. The fonts and derivatives, 57 | however, cannot be released under any other type of license. The 58 | requirement for fonts to remain under this license does not apply 59 | to any document created using the fonts or their derivatives. 60 | 61 | DEFINITIONS 62 | "Font Software" refers to the set of files released by the Copyright 63 | Holder(s) under this license and clearly marked as such. This may 64 | include source files, build scripts and documentation. 65 | 66 | "Reserved Font Name" refers to any names specified as such after the 67 | copyright statement(s). 68 | 69 | "Original Version" refers to the collection of Font Software components as 70 | distributed by the Copyright Holder(s). 71 | 72 | "Modified Version" refers to any derivative made by adding to, deleting, 73 | or substituting -- in part or in whole -- any of the components of the 74 | Original Version, by changing formats or by porting the Font Software to a 75 | new environment. 76 | 77 | "Author" refers to any designer, engineer, programmer, technical 78 | writer or other person who contributed to the Font Software. 79 | 80 | PERMISSION & CONDITIONS 81 | Permission is hereby granted, free of charge, to any person obtaining 82 | a copy of the Font Software, to use, study, copy, merge, embed, modify, 83 | redistribute, and sell modified and unmodified copies of the Font 84 | Software, subject to the following conditions: 85 | 86 | 1) Neither the Font Software nor any of its individual components, 87 | in Original or Modified Versions, may be sold by itself. 88 | 89 | 2) Original or Modified Versions of the Font Software may be bundled, 90 | redistributed and/or sold with any software, provided that each copy 91 | contains the above copyright notice and this license. These can be 92 | included either as stand-alone text files, human-readable headers or 93 | in the appropriate machine-readable metadata fields within text or 94 | binary files as long as those fields can be easily viewed by the user. 95 | 96 | 3) No Modified Version of the Font Software may use the Reserved Font 97 | Name(s) unless explicit written permission is granted by the corresponding 98 | Copyright Holder. This restriction only applies to the primary font name as 99 | presented to the users. 100 | 101 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font 102 | Software shall not be used to promote, endorse or advertise any 103 | Modified Version, except to acknowledge the contribution(s) of the 104 | Copyright Holder(s) and the Author(s) or with their explicit written 105 | permission. 106 | 107 | 5) The Font Software, modified or unmodified, in part or in whole, 108 | must be distributed entirely under this license, and must not be 109 | distributed under any other license. The requirement for fonts to 110 | remain under this license does not apply to any document created 111 | using the Font Software. 112 | 113 | TERMINATION 114 | This license becomes null and void if any of the above conditions are 115 | not met. 116 | 117 | DISCLAIMER 118 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 119 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF 120 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT 121 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE 122 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 123 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL 124 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 125 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM 126 | OTHER DEALINGS IN THE FONT SOFTWARE. 127 | -------------------------------------------------------------------------------- /source/cmap_format_14_master: -------------------------------------------------------------------------------- 1 | uv,in_name,uvs,out_name 2 | 0x5305,cid11946,0xe0101, 3 | 0x73ca,cid26817,0xe0101, 4 | 0x8d67,uni8D67,0xe0101, 5 | 0x5026,cid10689,0xe0100, 6 | 0x50c5,cid10982,0xe0100,cid61784 7 | 0x5132,cid11180,0xe0100,cid61785 8 | 0x514e,cid11230,0xe0100,cid61786 9 | 0x51a4,cid11367,0xe0100,cid61787 10 | 0x537f,cid12166,0xe0101,cid61788 11 | 0x53a9,cid12223,0xe0100,cid61789 12 | 0x53c9,cid12279,0xe0100,cid61790 13 | 0x53db,cid12305,0xe0100,cid61791 14 | 0x53df,cid12312,0xe0100,cid61792 15 | 0x54ac,cid12631,0xe0100,cid61793 16 | 0x54e8,cid12712,0xe0100,cid61794 17 | 0x55b0,cid13044,0xe0100,cid61795 18 | 0x5632,cid13275,0xe0100,cid61796 19 | 0x5642,cid13299,0xe0100,cid61797 20 | 0x564c,cid13320,0xe0100,cid61798 21 | 0x56c0,cid13529,0xe0100,cid61799 22 | 0x5835,cid14118,0xe0100,cid61800 23 | 0x5906,cid14472,0xe0100,cid61801 24 | 0x5a29,cid15112,0xe0100,cid61802 25 | 0x5c51,cid16277,0xe0100,cid61803 26 | 0x5c60,cid16300,0xe0100,cid61804 27 | 0x5df7,cid17088,0xe0100,cid61805 28 | 0x5e96,cid17346,0xe0100,cid61806 29 | 0x5edf,cid17491,0xe0100,cid61807 30 | 0x5efb,cid17547,0xe0100,cid61808 31 | 0x5f98,cid17829,0xe0100,cid61809 32 | 0x5fbd,cid17896,0xe0100,cid61810 33 | 0x6062,cid18153,0xe0100,cid61811 34 | 0x609e,uni609E,0xe0100,cid61812 35 | 0x6108,cid18432,0xe0100,cid61813 36 | 0x6241,cid19007,0xe0100,cid61814 37 | 0x633a,cid19397,0xe0100,cid61815 38 | 0x633d,cid19405,0xe0100,cid61816 39 | 0x6357,cid19444,0xe0100,cid61817 40 | 0x6372,cid19485,0xe0100,cid61818 41 | 0x63c3,cid19623,0xe0100,cid61819 42 | 0x646f,cid19930,0xe0100,cid61820 43 | 0x647a,cid19951,0xe0100,cid61821 44 | 0x64b0,cid20042,0xe0100,cid61822 45 | 0x64e2,cid20132,0xe0100,cid61823 46 | 0x65a7,cid20493,0xe0100,cid61824 47 | 0x6666,cid20813,0xe0100,cid61825 48 | 0x66b5,cid20945,0xe0100,cid61826 49 | 0x6753,cid21218,0xe0100,cid61827 50 | 0x6756,cid21222,0xe0100,cid61828 51 | 0x6897,cid21733,0xe0100,cid61829 52 | 0x6962,cid22091,0xe0100,cid61830 53 | 0x696f,cid22115,0xe0100,cid61831 54 | 0x698a,cid22166,0xe0100,cid61832 55 | 0x6994,cid22182,0xe0100,cid61833 56 | 0x69cc,cid22292,0xe0100,cid61834 57 | 0x6a0b,cid22412,0xe0100,cid61835 58 | 0x6a3d,cid22501,0xe0100,cid61836 59 | 0x6adb,cid22784,0xe0101,cid61837 60 | 0x6b4e,cid22995,0xe0100,cid61838 61 | 0x6c72,cid23529,0xe0100,cid61839 62 | 0x6deb,cid24111,0xe0100,cid61840 63 | 0x6ea2,cid24417,0xe0100,cid61841 64 | 0x6eba,cid24460,0xe0100,cid61842 65 | 0x6f23,cid24655,0xe0101,cid61843 66 | 0x7015,cid25083,0xe0100,cid61844 67 | 0x701e,cid25104,0xe0100,cid61845 68 | 0x7026,cid25120,0xe0100,cid61846 69 | 0x7058,cid25217,0xe0100,cid61847 70 | 0x7078,cid25273,0xe0100,cid61848 71 | 0x707c,cid25281,0xe0100,cid61849 72 | 0x7149,cid25678,0xe0101,cid61850 73 | 0x714e,cid25689,0xe0100,cid61851 74 | 0x7152,uni7152,0xe0100,cid61852 75 | 0x717d,cid25785,0xe0100,cid61853 76 | 0x723a,cid26182,0xe0100,cid61854 77 | 0x724c,cid26212,0xe0100,cid61855 78 | 0x7259,uni7259,0xe0100,cid61856 79 | 0x72e1,cid26447,0xe0100,cid61857 80 | 0x7337,cid26581,0xe0100,cid61858 81 | 0x7511,cid27409,0xe0100,cid61859 82 | 0x7515,cid27420,0xe0100,cid61860 83 | 0x7526,cid27450,0xe0100,cid61861 84 | 0x75bc,cid27687,0xe0100,cid61862 85 | 0x77a5,cid28552,0xe0100,cid61863 86 | 0x7941,cid29223,0xe0100,cid61864 87 | 0x7947,cid29235,0xe0100,cid61865 88 | 0x79b0,cid29429,0xe0100,cid61866 89 | 0x79e4,cid29519,0xe0100,cid61867 90 | 0x7a17,cid29606,0xe0100,cid61868 91 | 0x7a7f,cid29802,0xe0100,cid61869 92 | 0x7ac8,cid29982,0xe0100,cid61870 93 | 0x7b08,cid30105,0xe0100,cid61871 94 | 0x7b75,cid30328,0xe0100,cid61872 95 | 0x7bad,cid30441,0xe0100,cid61873 96 | 0x7bb8,cid30463,0xe0100,cid61874 97 | 0x7bc7,cid30491,0xe0100,cid61875 98 | 0x7bdd,cid30538,0xe0100,cid61876 99 | 0x7c3e,cid30751,0xe0100,cid61877 100 | 0x7c7e,cid30898,0xe0100,cid61878 101 | 0x7c82,cid30907,0xe0100,cid61879 102 | 0x7feb,cid32535,0xe0100,cid61880 103 | 0x7ff0,cid32549,0xe0100,cid61881 104 | 0x8171,cid33338,0xe0100,cid61882 105 | 0x817f,cid33368,0xe0100,cid61883 106 | 0x8258,cid33856,0xe0100,cid61884 107 | 0x8292,cid33976,0xe0100,cid61885 108 | 0x82a6,cid34022,0xe0100,cid61886 109 | 0x8328,cid34303,0xe0100,cid61887 110 | 0x845b,cid34949,0xe0100,cid61888 111 | 0x84ec,cid35275,0xe0100,cid61889 112 | 0x8511,cid35366,0xe0100,cid61890 113 | 0x853d,cid35466,0xe0100,cid61891 114 | 0x85a9,cid35723,0xe0100,cid61892 115 | 0x85af,cid35735,0xe0100,cid61893 116 | 0x85f7,cid35897,0xe0100,cid61894 117 | 0x8654,cid36113,0xe0100,cid61895 118 | 0x86f8,cid36370,0xe0100,cid61896 119 | 0x8703,uni8703,0xe0100,cid61897 120 | 0x8755,cid36524,0xe0100,cid61898 121 | 0x8805,cid36834,0xe0100,cid61899 122 | 0x8956,cid37461,0xe0100,cid61900 123 | 0x8a0a,cid37788,0xe0100,cid61901 124 | 0x8a1d,cid37825,0xe0100,cid61902 125 | 0x8a3b,cid37884,0xe0100,cid61903 126 | 0x8a6e,cid37985,0xe0100,cid61904 127 | 0x8ab9,cid38136,0xe0100,cid61905 128 | 0x8afa,cid38274,0xe0100,cid61906 129 | 0x8b0e,cid38319,0xe0100,cid61907 130 | 0x8b2c,cid38385,0xe0100,cid61908 131 | 0x8b7f,uni8B7F,0xe0100,cid61909 132 | 0x8c79,cid38900,0xe0100,cid61910 133 | 0x8ced,cid39098,0xe0100,cid61911 134 | 0x8fbb,cid40226,0xe0100,cid61912 135 | 0x8fbf,cid40236,0xe0100,cid61913 136 | 0x8fc2,cid40244,0xe0100,cid61914 137 | 0x8fc4,cid40249,0xe0100,cid61915 138 | 0x8fe6,cid40329,0xe0100,cid61916 139 | 0x9017,cid40456,0xe0100,cid61917 140 | 0x9019,cid40461,0xe0100,cid61918 141 | 0x9022,cid40488,0xe0100,cid61919 142 | 0x903c,cid40549,0xe0100,cid61920 143 | 0x9041,cid40561,0xe0100,cid61921 144 | 0x905c,cid40635,0xe0100,cid61922 145 | 0x9061,cid40648,0xe0100,cid61923 146 | 0x912d,cid41022,0xe0100,cid61924 147 | 0x914b,cid41084,0xe0100,cid61925 148 | 0x91dc,cid41367,0xe0100,cid61926 149 | 0x9306,cid41945,0xe0100,cid61927 150 | 0x9375,cid42162,0xe0100,cid61928 151 | 0x939a,cid42235,0xe0100,cid61929 152 | 0x9453,cid42600,0xe0100,cid61930 153 | 0x9699,cid43380,0xe0100,cid61931 154 | 0x9771,cid43820,0xe0100,cid61932 155 | 0x9784,cid43849,0xe0100,cid61933 156 | 0x9798,cid43875,0xe0100,cid61934 157 | 0x97ad,cid43910,0xe0100,cid61935 158 | 0x98f4,cid44463,0xe0100,cid61936 159 | 0x9905,cid44499,0xe0100,cid61937 160 | 0x990c,cid44516,0xe0100,cid61938 161 | 0x9910,cid44523,0xe0100,cid61939 162 | 0x9957,cid44710,0xe0100,cid61940 163 | 0x99c1,cid44855,0xe0100,cid61941 164 | 0x9a19,cid45001,0xe0100,cid61942 165 | 0x9a4a,uni9A4A,0xe0100,cid61943 166 | 0x9bab,cid45734,0xe0100,cid61944 167 | 0x9bd6,cid45794,0xe0100,cid61945 168 | 0x9c2f,cid45950,0xe0100,cid61946 169 | 0x9c52,cid46017,0xe0100,cid61947 170 | 0x9d09,cid46247,0xe0100,cid61948 171 | 0x9d60,cid46385,0xe0100,cid61949 172 | 0x8612,uni8612,0xe0101,cid61950 173 | 0x61f2,cid18873,0xe0101,cid61951 174 | 0x3402,uni3402,0xe0101,cid61952 175 | 0x3402,uni3402,0xe0102,cid61953 176 | 0x4e08,cid09841,0xe0101,cid61954 177 | 0x4e0e,cid09847,0xe0101,cid61955 178 | 0x4e19,cid09867,0xe0101,cid61956 179 | 0x4e26,cid09883,0xe0101,cid61957 180 | 0x4e30,uni4E30,0xe0101,cid61958 181 | 0x4e39,cid09912,0xe0101,cid61959 182 | 0x4e3b,cid09914,0xe0101,cid61960 183 | 0x4e73,cid09995,0xe0101,cid61961 184 | 0x4ea1,cid10069,0xe0101,cid61962 185 | 0x4ea4,cid10075,0xe0101,cid61963 186 | 0x4f34,cid10293,0xe0101,cid61964 187 | 0x4f4f,cid10333,0xe0101,cid61965 188 | 0x4f73,cid10389,0xe0101,cid61966 189 | 0x4f75,cid10392,0xe0101,cid61967 190 | 0x4f7f,cid10410,0xe0101,cid61968 191 | 0x4fb5,cid10495,0xe0101,cid61969 192 | 0x4fbf,cid10513,0xe0101,cid61970 193 | 0x5024,cid10684,0xe0101,cid61971 194 | 0x5049,cid10750,0xe0101,cid61972 195 | 0x504f,cid10761,0xe0101,cid61973 196 | 0x5056,uni5056,0xe0101,cid61974 197 | 0x5065,cid10803,0xe0101,cid61975 198 | 0x5085,cid10859,0xe0101,cid61976 199 | 0x5091,cid10880,0xe0101,cid61977 200 | 0x5091,cid10880,0xe0102,cid61978 201 | 0x50ca,uni50CA,0xe0101,cid61979 202 | 0x50ca,uni50CA,0xe0102,cid61980 203 | 0x50cf,cid10999,0xe0101,cid61981 204 | 0x50ed,cid11053,0xe0101,cid61982 205 | 0x50f2,cid11066,0xe0101,cid61983 206 | 0x511a,cid11136,0xe0101,cid61984 207 | 0x5146,cid11216,0xe0101,cid61985 208 | 0x5154,cid11240,0xe0102,cid61986 209 | 0x5168,cid11275,0xe0101,cid61987 210 | 0x516b,uni516B,0xe0101,cid61988 211 | 0x516c,cid11285,0xe0101,cid61989 212 | 0x5177,cid11303,0xe0101,cid61990 213 | 0x517c,cid11311,0xe0101,cid61991 214 | 0x5189,uni5189,0xe0101,cid61992 215 | 0x5192,cid11341,0xe0101,cid61993 216 | 0x5193,cid11343,0xe0101,cid61994 217 | 0x5195,uni5195,0xe0102,cid61995 218 | 0x51b4,cid11392,0xe0101,cid61996 219 | 0x51b4,cid11392,0xe0102,cid61997 220 | 0x51cb,cid11439,0xe0101,cid61998 221 | 0x51db,cid11470,0xe0101,cid61999 222 | 0x51de,uni51DE,0xe0102,cid62000 223 | 0x51de,uni51DE,0xe0103,cid62001 224 | 0x51de,uni51DE,0xe0104,cid62002 225 | 0x51e1,cid11485,0xe0101,cid62003 226 | 0x51fd,cid11524,0xe0101,cid62004 227 | 0x5203,cid11533,0xe0101,cid62005 228 | 0x5206,cid11539,0xe0101,cid62006 229 | 0x5224,cid11579,0xe0101,cid62007 230 | 0x5238,cid11609,0xe0101,cid62008 231 | 0x524a,cid11636,0xe0101,cid62009 232 | 0x524d,cid11640,0xe0101,cid62010 233 | 0x5264,cid11677,0xe0101,cid62011 234 | 0x5271,cid11698,0xe0101,cid62012 235 | 0x5272,cid11700,0xe0102,cid62013 236 | 0x5275,cid11708,0xe0101,cid62014 237 | 0x528d,uni528D,0xe0101,cid62015 238 | 0x52c7,cid11843,0xe0101,cid62016 239 | 0x52d7,uni52D7,0xe0101,cid62017 240 | 0x52dd,cid11879,0xe0101,cid62018 241 | 0x5300,uni5300,0xe0101,cid62019 242 | 0x5307,uni5307,0xe0101,cid62020 243 | 0x5315,uni5315,0xe0101,cid62021 244 | 0x5316,cid11977,0xe0101,cid62022 245 | 0x5339,cid12047,0xe0101,cid62023 246 | 0x533f,cid12065,0xe0101,cid62024 247 | 0x5340,cid12068,0xe0101,cid62025 248 | 0x534a,cid12081,0xe0101,cid62026 249 | 0x535a,cid12102,0xe0101,cid62027 250 | 0x5365,cid12119,0xe0101,cid62028 251 | 0x5371,cid12140,0xe0101,cid62029 252 | 0x5378,cid12152,0xe0101,cid62030 253 | 0x53a9,cid12223,0xe0101,cid62031 254 | 0x53a9,cid12223,0xe0102,cid62032 255 | 0x53a9,cid12223,0xe0103,cid62033 256 | 0x53a9,cid12223,0xe0104,cid62034 257 | 0x53ca,cid12281,0xe0101,cid62035 258 | 0x53ce,cid12288,0xe0101,cid62036 259 | 0x53d7,cid12300,0xe0101,cid62037 260 | 0x53e0,cid12315,0xe0101,cid62038 261 | 0x53f1,cid12342,0xe0101,cid62039 262 | 0x53f2,cid12343,0xe0101,cid62040 263 | 0x540f,cid12384,0xe0101,cid62041 264 | 0x5438,cid12455,0xe0101,cid62042 265 | 0x5440,uni5440,0xe0101,cid62043 266 | 0x5448,cid12481,0xe0101,cid62044 267 | 0x54b2,cid12639,0xe0101,cid62045 268 | 0x5510,cid12778,0xe0101,cid62046 269 | 0x5533,cid12825,0xe0101,cid62047 270 | 0x5533,cid12825,0xe0102,cid62048 271 | 0x5539,uni5539,0xe0101,cid62049 272 | 0x5544,cid12860,0xe0101,cid62050 273 | 0x5546,cid12864,0xe0101,cid62051 274 | 0x5553,cid12884,0xe0101,cid62052 275 | 0x5561,uni5561,0xe0101,cid62053 276 | 0x559c,cid13008,0xe0101,cid62054 277 | 0x55a9,cid13029,0xe0101,cid62055 278 | 0x55a9,cid13029,0xe0102,cid62056 279 | 0x55ab,cid13034,0xe0101,cid62057 280 | 0x55ab,cid13034,0xe0102,cid62058 281 | 0x55e4,cid13139,0xe0101,cid62059 282 | 0x55e4,cid13139,0xe0102,cid62060 283 | 0x5605,cid13198,0xe0101,cid62061 284 | 0x5609,cid13206,0xe0101,cid62062 285 | 0x5674,cid13393,0xe0101,cid62063 286 | 0x5678,cid13400,0xe0101,cid62064 287 | 0x56a5,cid13474,0xe0101,cid62065 288 | 0x56ae,uni56AE,0xe0101,cid62066 289 | 0x56ae,uni56AE,0xe0102,cid62067 290 | 0x56ae,uni56AE,0xe0103,cid62068 291 | 0x56c1,cid13530,0xe0101,cid62069 292 | 0x56ce,uni56CE,0xe0101,cid62070 293 | 0x56ee,cid13610,0xe0101,cid62071 294 | 0x570d,uni570D,0xe0101,cid62072 295 | 0x5747,cid13745,0xe0101,cid62073 296 | 0x576a,cid13795,0xe0101,cid62074 297 | 0x57d6,uni57D6,0xe0101,cid62075 298 | 0x57f4,cid14009,0xe0101,cid62076 299 | 0x57f4,cid14009,0xe0102,cid62077 300 | 0x580b,cid14052,0xe0101,cid62078 301 | 0x5819,cid14070,0xe0101,cid62079 302 | 0x583d,uni583D,0xe0101,cid62080 303 | 0x5858,cid14181,0xe0101,cid62081 304 | 0x5859,cid14183,0xe0101,cid62082 305 | 0x585a,cid14185,0xe0102,cid62083 306 | 0x589c,cid14298,0xe0101,cid62084 307 | 0x58ab,uni58AB,0xe0101,cid62085 308 | 0x591b,uni591B,0xe0101,cid62086 309 | 0x5927,uni5927,0xe0101,cid62087 310 | 0x594f,cid14600,0xe0101,cid62088 311 | 0x5951,cid14605,0xe0102,cid62089 312 | 0x5953,uni5953,0xe0101,cid62090 313 | 0x5960,cid14636,0xe0101,cid62091 314 | 0x5962,cid14640,0xe0101,cid62092 315 | 0x5973,uni5973,0xe0101,cid62093 316 | 0x5984,cid14714,0xe0101,cid62094 317 | 0x59a5,cid14789,0xe0101,cid62095 318 | 0x59c9,cid14877,0xe0101,cid62096 319 | 0x59da,cid14919,0xe0101,cid62097 320 | 0x59ff,cid15014,0xe0101,cid62098 321 | 0x59ff,cid15014,0xe0102,cid62099 322 | 0x5a1c,cid15081,0xe0101,cid62100 323 | 0x5a36,cid15140,0xe0101,cid62101 324 | 0x5a66,cid15249,0xe0101,cid62102 325 | 0x5a9b,cid15364,0xe0101,cid62103 326 | 0x5abe,uni5ABE,0xe0101,cid62104 327 | 0x5abe,uni5ABE,0xe0102,cid62105 328 | 0x5ac2,cid15461,0xe0101,cid62106 329 | 0x5acc,cid15486,0xe0101,cid62107 330 | 0x5ada,cid15517,0xe0101,cid62108 331 | 0x5b5a,cid15802,0xe0101,cid62109 332 | 0x5b73,uni5B73,0xe0101,cid62110 333 | 0x5b7c,uni5B7C,0xe0101,cid62111 334 | 0x5bb3,cid15985,0xe0101,cid62112 335 | 0x5bb3,cid15985,0xe0102,cid62113 336 | 0x5bb3,cid15985,0xe0103,cid62114 337 | 0x5bb5,cid15991,0xe0101,cid62115 338 | 0x5bd2,cid16046,0xe0101,cid62116 339 | 0x5bdb,cid16066,0xe0101,cid62117 340 | 0x5be7,cid16093,0xe0100,cid62118 341 | 0x5be8,uni5BE8,0xe0101,cid62119 342 | 0x5c0a,cid16163,0xe0101,cid62120 343 | 0x5c0a,cid16163,0xe0102,cid62121 344 | 0x5c0b,cid16165,0xe0101,cid62122 345 | 0x5c0e,cid16170,0xe0101,cid62123 346 | 0x5c28,uni5C28,0xe0101,cid62124 347 | 0x5d29,cid16694,0xe0101,cid62125 348 | 0x5d4e,cid16764,0xe0101,cid62126 349 | 0x5d87,cid16878,0xe0101,cid62127 350 | 0x5dc9,uni5DC9,0xe0101,cid62128 351 | 0x5dcc,cid17017,0xe0101,cid62129 352 | 0x5dd3,uni5DD3,0xe0101,cid62130 353 | 0x5de1,cid17057,0xe0101,cid62131 354 | 0x5de5,uni5DE5,0xe0101,cid62132 355 | 0x5de8,cid17068,0xe0101,cid62133 356 | 0x5e06,cid17109,0xe0101,cid62134 357 | 0x5e1d,cid17142,0xe0101,cid62135 358 | 0x5e30,cid17171,0xe0101,cid62136 359 | 0x5e3d,cid17191,0xe0101,cid62137 360 | 0x5e43,uni5E43,0xe0101,cid62138 361 | 0x5e54,cid17224,0xe0101,cid62139 362 | 0x5e63,cid17251,0xe0101,cid62140 363 | 0x5e64,uni5E64,0xe0101,cid62141 364 | 0x5e73,cid17282,0xe0101,cid62142 365 | 0x5e7e,cid17303,0xe0101,cid62143 366 | 0x5ead,cid17388,0xe0101,cid62144 367 | 0x5eca,cid17443,0xe0102,cid62145 368 | 0x5ecb,uni5ECB,0xe0101,cid62146 369 | 0x5ecf,uni5ECF,0xe0101,cid62147 370 | 0x5ed0,uni5ED0,0xe0101,cid62148 371 | 0x5ee0,cid17493,0xe0101,cid62149 372 | 0x5ee3,cid17500,0xe0101,cid62150 373 | 0x5ee3,cid17500,0xe0102,cid62151 374 | 0x5ef6,cid17536,0xe0101,cid62152 375 | 0x5ef6,cid17536,0xe0102,cid62153 376 | 0x5ef7,cid17539,0xe0101,cid62154 377 | 0x5efa,cid17545,0xe0101,cid62155 378 | 0x5f0a,cid17574,0xe0101,cid62156 379 | 0x5f2d,uni5F2D,0xe0101,cid62157 380 | 0x5f31,cid17650,0xe0101,cid62158 381 | 0x5f38,cid17662,0xe0101,cid62159 382 | 0x5f45,uni5F45,0xe0101,cid62160 383 | 0x5f69,cid17753,0xe0101,cid62161 384 | 0x5f80,cid17794,0xe0101,cid62162 385 | 0x5fa1,cid17844,0xe0101,cid62163 386 | 0x5fae,cid17869,0xe0101,cid62164 387 | 0x5fb5,uni5FB5,0xe0101,cid62165 388 | 0x5fcd,cid17916,0xe0101,cid62166 389 | 0x5fd8,cid17932,0xe0101,cid62167 390 | 0x5fd9,cid17935,0xe0101,cid62168 391 | 0x5fdd,cid17942,0xe0101,cid62169 392 | 0x6025,cid18056,0xe0101,cid62170 393 | 0x6050,cid18122,0xe0101,cid62171 394 | 0x6062,cid18153,0xe0101,cid62172 395 | 0x6065,cid18160,0xe0101,cid62173 396 | 0x6097,cid18240,0xe0101,cid62174 397 | 0x6097,cid18240,0xe0102,cid62175 398 | 0x60a4,uni60A4,0xe0101,cid62176 399 | 0x60b2,cid18288,0xe0101,cid62177 400 | 0x60c5,cid18324,0xe0101,cid62178 401 | 0x60d8,cid18354,0xe0101,cid62179 402 | 0x6109,cid18435,0xe0101,cid62180 403 | 0x610f,cid18448,0xe0101,cid62181 404 | 0x613d,cid18528,0xe0101,cid62182 405 | 0x614c,cid18561,0xe0101,cid62183 406 | 0x614e,cid18565,0xe0101,cid62184 407 | 0x6162,cid18599,0xe0101,cid62185 408 | 0x6167,cid18611,0xe0101,cid62186 409 | 0x6167,cid18611,0xe0102,cid62187 410 | 0x6168,cid18614,0xe0102,cid62188 411 | 0x6168,cid18614,0xe0103,cid62189 412 | 0x6168,cid18614,0xe0104,cid62190 413 | 0x6168,cid18614,0xe0105,cid62191 414 | 0x6190,cid18695,0xe0101,cid62192 415 | 0x61a4,cid18728,0xe0101,cid62193 416 | 0x61b2,cid18753,0xe0102,cid62194 417 | 0x61f2,cid18873,0xe0102,cid62195 418 | 0x61f8,cid18884,0xe0101,cid62196 419 | 0x61fe,cid18896,0xe0101,cid62197 420 | 0x623b,cid18993,0xe0101,cid62198 421 | 0x623f,cid19002,0xe0101,cid62199 422 | 0x6240,cid19005,0xe0101,cid62200 423 | 0x6247,cid19022,0xe0101,cid62201 424 | 0x6248,cid19025,0xe0101,cid62202 425 | 0x6249,cid19028,0xe0101,cid62203 426 | 0x6249,cid19028,0xe0102,cid62204 427 | 0x6268,cid19077,0xe0101,cid62205 428 | 0x6271,cid19092,0xe0101,cid62206 429 | 0x62b1,cid19188,0xe0101,cid62207 430 | 0x62cc,cid19227,0xe0101,cid62208 431 | 0x62cf,cid19233,0xe0101,cid62209 432 | 0x62d0,cid19236,0xe0101,cid62210 433 | 0x62d2,cid19239,0xe0101,cid62211 434 | 0x62f3,cid19286,0xe0101,cid62212 435 | 0x62f7,cid19296,0xe0101,cid62213 436 | 0x634c,cid19426,0xe0101,cid62214 437 | 0x6367,cid19467,0xe0101,cid62215 438 | 0x6368,cid19469,0xe0101,cid62216 439 | 0x6369,cid19471,0xe0101,cid62217 440 | 0x636e,cid19480,0xe0101,cid62218 441 | 0x6383,cid19518,0xe0101,cid62219 442 | 0x6388,cid19527,0xe0101,cid62220 443 | 0x6392,cid19542,0xe0101,cid62221 444 | 0x63a1,cid19568,0xe0101,cid62222 445 | 0x63a7,cid19580,0xe0101,cid62223 446 | 0x63c6,cid19631,0xe0101,cid62224 447 | 0x63f4,cid19714,0xe0101,cid62225 448 | 0x6406,uni6406,0xe0101,cid62226 449 | 0x640f,cid19753,0xe0101,cid62227 450 | 0x641c,cid19777,0xe0101,cid62228 451 | 0x6428,uni6428,0xe0101,cid62229 452 | 0x6442,cid19855,0xe0101,cid62230 453 | 0x6469,cid19920,0xe0101,cid62231 454 | 0x64f2,cid20167,0xe0101,cid62232 455 | 0x64f6,cid20176,0xe0101,cid62233 456 | 0x651d,cid20256,0xe0101,cid62234 457 | 0x655d,uni655D,0xe0101,cid62235 458 | 0x655e,uni655E,0xe0101,cid62236 459 | 0x6562,cid20370,0xe0101,cid62237 460 | 0x6577,cid20402,0xe0101,cid62238 461 | 0x6583,cid20425,0xe0101,cid62239 462 | 0x6587,uni6587,0xe0101,cid62240 463 | 0x6589,uni6589,0xe0101,cid62241 464 | 0x658e,cid20445,0xe0101,cid62242 465 | 0x6590,cid20448,0xe0101,cid62243 466 | 0x659c,cid20470,0xe0101,cid62244 467 | 0x65bc,cid20531,0xe0101,cid62245 468 | 0x65df,cid20601,0xe0101,cid62246 469 | 0x65e1,uni65E1,0xe0101,cid62247 470 | 0x660e,cid20679,0xe0101,cid62248 471 | 0x661e,uni661E,0xe0101,cid62249 472 | 0x665f,cid20801,0xe0101,cid62250 473 | 0x665f,cid20801,0xe0102,cid62251 474 | 0x665f,cid20801,0xe0103,cid62252 475 | 0x6667,uni6667,0xe0101,cid62253 476 | 0x6669,cid20819,0xe0101,cid62254 477 | 0x666e,cid20827,0xe0101,cid62255 478 | 0x6677,uni6677,0xe0101,cid62256 479 | 0x6681,cid20860,0xe0101,cid62257 480 | 0x6696,cid20891,0xe0101,cid62258 481 | 0x6697,cid20892,0xe0101,cid62259 482 | 0x66c1,uni66C1,0xe0101,cid62260 483 | 0x66c1,uni66C1,0xe0102,cid62261 484 | 0x66d9,cid21004,0xe0101,cid62262 485 | 0x66dc,cid21009,0xe0101,cid62263 486 | 0x66f4,cid21055,0xe0101,cid62264 487 | 0x66f5,cid21056,0xe0101,cid62265 488 | 0x66f8,cid21061,0xe0101,cid62266 489 | 0x66fb,uni66FB,0xe0101,cid62267 490 | 0x66fc,cid21066,0xe0101,cid62268 491 | 0x6700,cid21073,0xe0101,cid62269 492 | 0x6708,uni6708,0xe0101,cid62270 493 | 0x6709,cid21091,0xe0101,cid62271 494 | 0x670b,cid21094,0xe0101,cid62272 495 | 0x670d,cid21098,0xe0101,cid62273 496 | 0x6715,cid21112,0xe0101,cid62274 497 | 0x6715,cid21112,0xe0102,cid62275 498 | 0x6717,cid21116,0xe0102,cid62276 499 | 0x6717,cid21116,0xe0103,cid62277 500 | 0x671b,cid21124,0xe0101,cid62278 501 | 0x671b,cid21124,0xe0102,cid62279 502 | 0x671d,cid21129,0xe0101,cid62280 503 | 0x671f,cid21133,0xe0101,cid62281 504 | 0x6761,cid21236,0xe0101,cid62282 505 | 0x677e,cid21279,0xe0101,cid62283 506 | 0x67a6,cid21344,0xe0101,cid62284 507 | 0x67a9,uni67A9,0xe0101,cid62285 508 | 0x67c4,cid21393,0xe0101,cid62286 509 | 0x67ca,cid21403,0xe0101,cid62287 510 | 0x67d4,cid21419,0xe0101,cid62288 511 | 0x67e7,cid21448,0xe0101,cid62289 512 | 0x67f1,cid21464,0xe0101,cid62290 513 | 0x6801,uni6801,0xe0101,cid62291 514 | 0x6802,cid21492,0xe0101,cid62292 515 | 0x6813,cid21512,0xe0101,cid62293 516 | 0x6821,cid21540,0xe0101,cid62294 517 | 0x6843,cid21600,0xe0101,cid62295 518 | 0x685d,cid21643,0xe0101,cid62296 519 | 0x685d,cid21643,0xe0102,cid62297 520 | 0x687a,uni687A,0xe0102,cid62298 521 | 0x688d,uni688D,0xe0101,cid62299 522 | 0x689b,cid21737,0xe0101,cid62300 523 | 0x689d,cid21739,0xe0101,cid62301 524 | 0x68a2,cid21750,0xe0101,cid62302 525 | 0x68c8,uni68C8,0xe0101,cid62303 526 | 0x68da,cid21855,0xe0101,cid62304 527 | 0x690d,cid21954,0xe0101,cid62305 528 | 0x690d,cid21954,0xe0102,cid62306 529 | 0x6930,cid22004,0xe0101,cid62307 530 | 0x693d,cid22029,0xe0101,cid62308 531 | 0x695e,uni695E,0xe0101,cid62309 532 | 0x696b,cid22106,0xe0101,cid62310 533 | 0x6982,cid22154,0xe0101,cid62311 534 | 0x6982,cid22154,0xe0102,cid62312 535 | 0x6982,cid22154,0xe0103,cid62313 536 | 0x69a7,uni69A7,0xe0101,cid62314 537 | 0x69bb,uni69BB,0xe0101,cid62315 538 | 0x69c1,cid22270,0xe0101,cid62316 539 | 0x69cb,cid22291,0xe0101,cid62317 540 | 0x69d9,cid22317,0xe0101,cid62318 541 | 0x69fe,cid22390,0xe0101,cid62319 542 | 0x6a44,cid22514,0xe0101,cid62320 543 | 0x6a55,cid22546,0xe0101,cid62321 544 | 0x6a5f,cid22563,0xe0101,cid62322 545 | 0x6a73,uni6A73,0xe0101,cid62323 546 | 0x6a8e,cid22643,0xe0101,cid62324 547 | 0x6a90,cid22648,0xe0101,cid62325 548 | 0x6a9c,cid22672,0xe0101,cid62326 549 | 0x6adb,cid22784,0xe0102,cid62327 550 | 0x6b1d,cid22905,0xe0101,cid62328 551 | 0x6b21,cid22914,0xe0101,cid62329 552 | 0x6b21,cid22914,0xe0102,cid62330 553 | 0x6b24,uni6B24,0xe0101,cid62331 554 | 0x6b96,cid23139,0xe0101,cid62332 555 | 0x6bbb,cid23226,0xe0101,cid62333 556 | 0x6c08,uni6C08,0xe0101,cid62334 557 | 0x6c08,uni6C08,0xe0102,cid62335 558 | 0x6c13,cid23386,0xe0101,cid62336 559 | 0x6c38,cid23445,0xe0101,cid62337 560 | 0x6caa,uni6CAA,0xe0101,cid62338 561 | 0x6caa,uni6CAA,0xe0102,cid62339 562 | 0x6cbf,cid23647,0xe0102,cid62340 563 | 0x6ce1,cid23704,0xe0101,cid62341 564 | 0x6ce8,cid23715,0xe0101,cid62342 565 | 0x6d3e,cid23842,0xe0101,cid62343 566 | 0x6d3e,cid23842,0xe0102,cid62344 567 | 0x6d6e,cid23908,0xe0101,cid62345 568 | 0x6d78,cid23924,0xe0101,cid62346 569 | 0x6d88,cid23946,0xe0101,cid62347 570 | 0x6de4,uni6DE4,0xe0101,cid62348 571 | 0x6dfb,cid24144,0xe0101,cid62349 572 | 0x6e08,cid24165,0xe0101,cid62350 573 | 0x6e23,cid24206,0xe0101,cid62351 574 | 0x6e23,cid24206,0xe0102,cid62352 575 | 0x6e2f,cid24229,0xe0101,cid62353 576 | 0x6e6e,cid24338,0xe0101,cid62354 577 | 0x6e72,uni6E72,0xe0101,cid62355 578 | 0x6e7e,cid24360,0xe0101,cid62356 579 | 0x6e9d,cid24408,0xe0101,cid62357 580 | 0x6ea2,cid24417,0xe0102,cid62358 581 | 0x6ecb,cid24496,0xe0102,cid62359 582 | 0x6ed5,cid24517,0xe0101,cid62360 583 | 0x6edb,cid24527,0xe0101,cid62361 584 | 0x6eec,uni6EEC,0xe0101,cid62362 585 | 0x6efe,uni6EFE,0xe0101,cid62363 586 | 0x6f11,cid24621,0xe0101,cid62364 587 | 0x6f11,cid24621,0xe0102,cid62365 588 | 0x6f3e,uni6F3E,0xe0101,cid62366 589 | 0x6f51,uni6F51,0xe0101,cid62367 590 | 0x6f54,cid24739,0xe0101,cid62368 591 | 0x6f5b,cid24754,0xe0101,cid62369 592 | 0x6f5b,cid24754,0xe0102,cid62370 593 | 0x6f64,cid24773,0xe0101,cid62371 594 | 0x6f74,cid24793,0xe0101,cid62372 595 | 0x6f98,uni6F98,0xe0101,cid62373 596 | 0x6fef,cid25012,0xe0101,cid62374 597 | 0x6ff9,uni6FF9,0xe0101,cid62375 598 | 0x701b,uni701B,0xe0101,cid62376 599 | 0x7027,cid25123,0xe0101,cid62377 600 | 0x704a,uni704A,0xe0101,cid62378 601 | 0x7070,cid25257,0xe0101,cid62379 602 | 0x7159,cid25714,0xe0101,cid62380 603 | 0x7162,uni7162,0xe0101,cid62381 604 | 0x717d,cid25785,0xe0101,cid62382 605 | 0x7194,cid25830,0xe0101,cid62383 606 | 0x71b3,uni71B3,0xe0101,cid62384 607 | 0x71d0,cid25961,0xe0101,cid62385 608 | 0x71ff,cid26057,0xe0101,cid62386 609 | 0x7235,cid26172,0xe0102,cid62387 610 | 0x7236,uni7236,0xe0101,cid62388 611 | 0x723b,uni723B,0xe0101,cid62389 612 | 0x723e,cid26187,0xe0101,cid62390 613 | 0x731c,cid26530,0xe0101,cid62391 614 | 0x7336,cid26579,0xe0101,cid62392 615 | 0x7336,cid26579,0xe0102,cid62393 616 | 0x7337,cid26581,0xe0101,cid62394 617 | 0x7387,cid26726,0xe0101,cid62395 618 | 0x73ca,cid26817,0xe0102,cid62396 619 | 0x73ce,cid26824,0xe0101,cid62397 620 | 0x73e5,uni73E5,0xe0101,cid62398 621 | 0x73ed,cid26867,0xe0101,cid62399 622 | 0x7432,cid26980,0xe0101,cid62400 623 | 0x745f,uni745F,0xe0101,cid62401 624 | 0x7462,uni7462,0xe0101,cid62402 625 | 0x74b0,cid27206,0xe0101,cid62403 626 | 0x74bd,cid27231,0xe0101,cid62404 627 | 0x74ca,uni74CA,0xe0101,cid62405 628 | 0x74d8,cid27277,0xe0101,cid62406 629 | 0x74dc,uni74DC,0xe0101,cid62407 630 | 0x74e0,uni74E0,0xe0101,cid62408 631 | 0x74ef,uni74EF,0xe0101,cid62409 632 | 0x7504,uni7504,0xe0101,cid62410 633 | 0x750c,cid27396,0xe0101,cid62411 634 | 0x750d,uni750D,0xe0101,cid62412 635 | 0x7511,cid27409,0xe0101,cid62413 636 | 0x7511,cid27409,0xe0102,cid62414 637 | 0x7515,cid27420,0xe0101,cid62415 638 | 0x7554,cid27518,0xe0101,cid62416 639 | 0x755d,cid27533,0xe0101,cid62417 640 | 0x75c5,cid27706,0xe0101,cid62418 641 | 0x7608,cid27836,0xe0101,cid62419 642 | 0x7626,uni7626,0xe0101,cid62420 643 | 0x7652,cid27995,0xe0101,cid62421 644 | 0x7664,cid28030,0xe0101,cid62422 645 | 0x7669,uni7669,0xe0101,cid62423 646 | 0x7672,cid28062,0xe0101,cid62424 647 | 0x7684,cid28088,0xe0101,cid62425 648 | 0x7693,cid28111,0xe0101,cid62426 649 | 0x76c6,cid28188,0xe0101,cid62427 650 | 0x76d4,cid28211,0xe0101,cid62428 651 | 0x76db,cid28223,0xe0101,cid62429 652 | 0x76df,cid28229,0xe0101,cid62430 653 | 0x76f2,cid28262,0xe0101,cid62431 654 | 0x76f4,cid28267,0xe0101,cid62432 655 | 0x7737,cid28368,0xe0101,cid62433 656 | 0x773a,cid28375,0xe0101,cid62434 657 | 0x777e,cid28484,0xe0101,cid62435 658 | 0x778d,cid28511,0xe0101,cid62436 659 | 0x77a2,cid28547,0xe0101,cid62437 660 | 0x77ac,cid28563,0xe0101,cid62438 661 | 0x77e9,cid28674,0xe0101,cid62439 662 | 0x7832,cid28787,0xe0101,cid62440 663 | 0x783a,cid28797,0xe0101,cid62441 664 | 0x785d,cid28838,0xe0101,cid62442 665 | 0x786c,cid28861,0xe0101,cid62443 666 | 0x787c,cid28885,0xe0101,cid62444 667 | 0x78d4,cid29032,0xe0101,cid62445 668 | 0x78e8,cid29066,0xe0101,cid62446 669 | 0x78ef,cid29078,0xe0101,cid62447 670 | 0x792a,cid29177,0xe0101,cid62448 671 | 0x7934,uni7934,0xe0101,cid62449 672 | 0x793a,uni793A,0xe0100,cid62450 673 | 0x7940,cid29221,0xe0101,cid62451 674 | 0x7953,cid29255,0xe0102,cid62452 675 | 0x7962,cid29286,0xe0101,cid62453 676 | 0x79a7,uni79A7,0xe0101,cid62454 677 | 0x79ae,cid29425,0xe0101,cid62455 678 | 0x79b1,uni79B1,0xe0101,cid62456 679 | 0x79ba,cid29449,0xe0101,cid62457 680 | 0x7a0b,cid29582,0xe0101,cid62458 681 | 0x7a19,cid29609,0xe0101,cid62459 682 | 0x7a31,uni7A31,0xe0101,cid62460 683 | 0x7a60,uni7A60,0xe0101,cid62461 684 | 0x7a74,uni7A74,0xe0101,cid62462 685 | 0x7a74,uni7A74,0xe0102,cid62463 686 | 0x7a7a,cid29790,0xe0101,cid62464 687 | 0x7a95,uni7A95,0xe0101,cid62465 688 | 0x7a97,uni7A97,0xe0101,cid62466 689 | 0x7aae,cid29913,0xe0101,cid62467 690 | 0x7abe,cid29954,0xe0101,cid62468 691 | 0x7ac6,uni7AC6,0xe0101,cid62469 692 | 0x7b08,cid30105,0xe0101,cid62470 693 | 0x7b51,cid30256,0xe0101,cid62471 694 | 0x7b99,uni7B99,0xe0101,cid62472 695 | 0x7bc0,cid30477,0xe0102,cid62473 696 | 0x7bc9,cid30496,0xe0101,cid62474 697 | 0x7be0,cid30544,0xe0101,cid62475 698 | 0x7c14,uni7C14,0xe0101,cid62476 699 | 0x7c3e,cid30751,0xe0101,cid62477 700 | 0x7c3f,cid30754,0xe0101,cid62478 701 | 0x7c4d,cid30786,0xe0101,cid62479 702 | 0x7c50,cid30791,0xe0101,cid62480 703 | 0x7c50,cid30791,0xe0102,cid62481 704 | 0x7c58,uni7C58,0xe0101,cid62482 705 | 0x7c69,cid30851,0xe0101,cid62483 706 | 0x7c7e,cid30898,0xe0101,cid62484 707 | 0x7c89,cid30923,0xe0101,cid62485 708 | 0x7c90,cid30935,0xe0101,cid62486 709 | 0x7cae,cid30993,0xe0101,cid62487 710 | 0x7cf2,cid31140,0xe0101,cid62488 711 | 0x7d04,cid31176,0xe0101,cid62489 712 | 0x7d09,uni7D09,0xe0101,cid62490 713 | 0x7d0b,cid31192,0xe0101,cid62491 714 | 0x7d0d,cid31195,0xe0101,cid62492 715 | 0x7d1a,cid31223,0xe0101,cid62493 716 | 0x7d1b,cid31226,0xe0101,cid62494 717 | 0x7d42,cid31300,0xe0101,cid62495 718 | 0x7d46,cid31308,0xe0101,cid62496 719 | 0x7d5c,uni7D5C,0xe0101,cid62497 720 | 0x7d5e,cid31358,0xe0101,cid62498 721 | 0x7d73,uni7D73,0xe0101,cid62499 722 | 0x7d9b,uni7D9B,0xe0101,cid62500 723 | 0x7d9f,cid31486,0xe0101,cid62501 724 | 0x7dae,uni7DAE,0xe0101,cid62502 725 | 0x7db2,cid31528,0xe0101,cid62503 726 | 0x7db2,cid31528,0xe0102,cid62504 727 | 0x7dcb,cid31582,0xe0101,cid62505 728 | 0x7dcf,cid31592,0xe0101,cid62506 729 | 0x7ddd,cid31623,0xe0101,cid62507 730 | 0x7de8,cid31647,0xe0101,cid62508 731 | 0x7de9,cid31650,0xe0101,cid62509 732 | 0x7def,cid31662,0xe0101,cid62510 733 | 0x7e1b,cid31746,0xe0101,cid62511 734 | 0x7e22,cid31762,0xe0101,cid62512 735 | 0x7e22,cid31762,0xe0102,cid62513 736 | 0x7e2b,cid31781,0xe0101,cid62514 737 | 0x7e35,cid31801,0xe0101,cid62515 738 | 0x7e35,cid31801,0xe0102,cid62516 739 | 0x7e43,uni7E43,0xe0101,cid62517 740 | 0x7e6d,cid31921,0xe0101,cid62518 741 | 0x7e8c,uni7E8C,0xe0101,cid62519 742 | 0x7f3e,cid32204,0xe0101,cid62520 743 | 0x7f61,uni7F61,0xe0101,cid62522 744 | 0x7f6a,cid32288,0xe0101,cid62523 745 | 0x7f6e,cid32295,0xe0101,cid62524 746 | 0x7f80,cid32325,0xe0101,cid62525 747 | 0x7f8a,uni7F8A,0xe0100,cid62526 748 | 0x7fa1,uni7FA1,0xe0101,cid62527 749 | 0x7fae,cid32408,0xe0101,cid62528 750 | 0x7fc1,cid32446,0xe0101,cid62529 751 | 0x7fc1,cid32446,0xe0102,cid62530 752 | 0x7fc5,cid32454,0xe0101,cid62531 753 | 0x7fc6,uni7FC6,0xe0101,cid62532 754 | 0x7fcc,cid32466,0xe0101,cid62533 755 | 0x7fd2,cid32479,0xe0101,cid62534 756 | 0x7fd4,cid32484,0xe0101,cid62535 757 | 0x7fe0,cid32506,0xe0101,cid62536 758 | 0x7fe1,cid32509,0xe0101,cid62537 759 | 0x7fe1,cid32509,0xe0102,cid62538 760 | 0x7fe9,uni7FE9,0xe0101,cid62539 761 | 0x7fe9,uni7FE9,0xe0102,cid62540 762 | 0x7ffb,cid32570,0xe0101,cid62541 763 | 0x7ffc,cid32571,0xe0101,cid62542 764 | 0x7ffc,cid32571,0xe0102,cid62543 765 | 0x8000,cid32581,0xe0101,cid62544 766 | 0x8003,cid32587,0xe0101,cid62545 767 | 0x8012,uni8012,0xe0101,cid62546 768 | 0x8015,cid32621,0xe0101,cid62547 769 | 0x8017,cid32626,0xe0101,cid62548 770 | 0x8036,cid32691,0xe0101,cid62549 771 | 0x8056,cid32751,0xe0101,cid62550 772 | 0x805a,cid32759,0xe0101,cid62551 773 | 0x805f,uni805F,0xe0101,cid62552 774 | 0x8061,cid32774,0xe0101,cid62553 775 | 0x806f,cid32800,0xe0101,cid62554 776 | 0x8070,uni8070,0xe0101,cid62555 777 | 0x8071,uni8071,0xe0101,cid62556 778 | 0x8073,uni8073,0xe0101,cid62557 779 | 0x8074,cid32814,0xe0101,cid62558 780 | 0x8076,cid32818,0xe0101,cid62559 781 | 0x8077,cid32821,0xe0101,cid62560 782 | 0x807e,cid32836,0xe0101,cid62561 783 | 0x8087,cid32851,0xe0101,cid62562 784 | 0x8089,uni8089,0xe0101,cid62563 785 | 0x8096,cid32880,0xe0101,cid62564 786 | 0x809e,uni809E,0xe0101,cid62565 787 | 0x80a9,cid32916,0xe0101,cid62566 788 | 0x80ba,cid32956,0xe0101,cid62567 789 | 0x80d6,cid33008,0xe0101,cid62568 790 | 0x80de,cid33028,0xe0101,cid62569 791 | 0x8106,cid33114,0xe0101,cid62570 792 | 0x8108,cid33118,0xe0101,cid62571 793 | 0x8108,cid33118,0xe0102,cid62572 794 | 0x8109,uni8109,0xe0101,cid62573 795 | 0x8129,cid33185,0xe0101,cid62574 796 | 0x8153,cid33272,0xe0101,cid62575 797 | 0x8154,cid33275,0xe0101,cid62576 798 | 0x8170,cid33335,0xe0101,cid62577 799 | 0x818a,cid33397,0xe0101,cid62578 800 | 0x81b5,cid33483,0xe0101,cid62579 801 | 0x81cd,cid33544,0xe0101,cid62580 802 | 0x8200,cid33655,0xe0101,cid62581 803 | 0x820c,uni820C,0xe0101,cid62582 804 | 0x821b,uni821B,0xe0101,cid62583 805 | 0x821c,cid33714,0xe0101,cid62584 806 | 0x821f,uni821F,0xe0101,cid62585 807 | 0x822e,cid33758,0xe0101,cid62586 808 | 0x8239,cid33785,0xe0101,cid62587 809 | 0x8239,cid33785,0xe0102,cid62588 810 | 0x8240,uni8240,0xe0101,cid62589 811 | 0x8247,cid33818,0xe0101,cid62590 812 | 0x828d,cid33965,0xe0101,cid62591 813 | 0x82b1,cid34051,0xe0101,cid62592 814 | 0x82bd,cid34079,0xe0102,cid62593 815 | 0x82c5,cid34096,0xe0101,cid62594 816 | 0x82d2,uni82D2,0xe0101,cid62595 817 | 0x82e3,uni82E3,0xe0101,cid62596 818 | 0x8323,uni8323,0xe0101,cid62597 819 | 0x8352,cid34400,0xe0101,cid62598 820 | 0x8375,uni8375,0xe0101,cid62599 821 | 0x83bd,uni83BD,0xe0101,cid62600 822 | 0x83d3,cid34655,0xe0101,cid62601 823 | 0x83d4,cid34657,0xe0101,cid62602 824 | 0x83dc,cid34674,0xe0101,cid62603 825 | 0x83df,cid34681,0xe0101,cid62604 826 | 0x83df,cid34681,0xe0102,cid62605 827 | 0x83f2,uni83F2,0xe0101,cid62606 828 | 0x840c,cid34783,0xe0101,cid62607 829 | 0x840f,uni840F,0xe0101,cid62608 830 | 0x8420,cid34823,0xe0101,cid62609 831 | 0x8422,uni8422,0xe0101,cid62610 832 | 0x845c,cid34952,0xe0101,cid62611 833 | 0x847a,cid35028,0xe0101,cid62612 834 | 0x84ea,cid35270,0xe0101,cid62613 835 | 0x84f4,uni84F4,0xe0101,cid62614 836 | 0x8517,cid35379,0xe0101,cid62615 837 | 0x853d,cid35466,0xe0102,cid62616 838 | 0x8543,cid35480,0xe0101,cid62617 839 | 0x8551,cid35510,0xe0101,cid62618 840 | 0x8555,uni8555,0xe0101,cid62619 841 | 0x855d,cid35540,0xe0101,cid62620 842 | 0x8563,uni8563,0xe0101,cid62621 843 | 0x8584,cid35628,0xe0101,cid62622 844 | 0x8587,cid35636,0xe0101,cid62623 845 | 0x85cf,cid35808,0xe0101,cid62624 846 | 0x85d5,uni85D5,0xe0101,cid62625 847 | 0x85e4,cid35855,0xe0101,cid62626 848 | 0x864e,cid36099,0xe0101,cid62627 849 | 0x8650,cid36103,0xe0101,cid62628 850 | 0x865e,cid36134,0xe0101,cid62629 851 | 0x8662,cid36145,0xe0101,cid62630 852 | 0x868a,cid36208,0xe0101,cid62631 853 | 0x86db,cid36332,0xe0101,cid62632 854 | 0x871a,uni871A,0xe0101,cid62633 855 | 0x8737,uni8737,0xe0101,cid62634 856 | 0x873b,cid36481,0xe0101,cid62635 857 | 0x8759,cid36532,0xe0101,cid62636 858 | 0x8782,uni8782,0xe0101,cid62637 859 | 0x87a3,cid36663,0xe0101,cid62638 860 | 0x87bd,uni87BD,0xe0101,cid62639 861 | 0x87d2,uni87D2,0xe0101,cid62640 862 | 0x87d2,uni87D2,0xe0102,cid62641 863 | 0x8803,uni8803,0xe0101,cid62642 864 | 0x8805,cid36834,0xe0101,cid62643 865 | 0x880e,uni880E,0xe0101,cid62644 866 | 0x8836,uni8836,0xe0101,cid62645 867 | 0x8836,uni8836,0xe0102,cid62646 868 | 0x8842,uni8842,0xe0101,cid62647 869 | 0x8846,cid36954,0xe0101,cid62648 870 | 0x884b,cid36962,0xe0100,cid62649 871 | 0x8853,cid36973,0xe0101,cid62650 872 | 0x885b,cid36985,0xe0101,cid62651 873 | 0x8863,uni8863,0xe0101,cid62652 874 | 0x8877,cid37033,0xe0101,cid62654 875 | 0x889e,uni889E,0xe0101,cid62655 876 | 0x88d8,uni88D8,0xe0101,cid62656 877 | 0x88f4,uni88F4,0xe0101,cid62657 878 | 0x890a,cid37303,0xe0101,cid62658 879 | 0x891c,uni891C,0xe0101,cid62659 880 | 0x892b,uni892B,0xe0101,cid62660 881 | 0x893b,uni893B,0xe0101,cid62661 882 | 0x8941,uni8941,0xe0101,cid62662 883 | 0x896a,uni896A,0xe0101,cid62663 884 | 0x896f,uni896F,0xe0101,cid62664 885 | 0x8981,cid37554,0xe0101,cid62665 886 | 0x8986,cid37563,0xe0101,cid62666 887 | 0x8987,cid37565,0xe0101,cid62667 888 | 0x89aa,cid37621,0xe0101,cid62668 889 | 0x89af,uni89AF,0xe0101,cid62669 890 | 0x89bd,uni89BD,0xe0101,cid62670 891 | 0x8a0a,cid37788,0xe0102,cid62671 892 | 0x8a12,uni8A12,0xe0101,cid62672 893 | 0x8a1d,cid37825,0xe0101,cid62673 894 | 0x8a1f,cid37831,0xe0101,cid62674 895 | 0x8a55,cid37936,0xe0101,cid62675 896 | 0x8a8d,cid38048,0xe0101,cid62676 897 | 0x8a95,cid38064,0xe0101,cid62677 898 | 0x8a95,cid38064,0xe0102,cid62678 899 | 0x8aa0,cid38086,0xe0101,cid62679 900 | 0x8aa4,cid38094,0xe0101,cid62680 901 | 0x8abf,cid38147,0xe0101,cid62681 902 | 0x8acb,cid38172,0xe0101,cid62682 903 | 0x8adb,uni8ADB,0xe0101,cid62683 904 | 0x8ade,cid38216,0xe0101,cid62684 905 | 0x8aee,cid38248,0xe0101,cid62685 906 | 0x8aee,cid38248,0xe0102,cid62686 907 | 0x8b04,cid38297,0xe0101,cid62687 908 | 0x8b19,cid38344,0xe0101,cid62688 909 | 0x8b1b,cid38348,0xe0101,cid62689 910 | 0x8b1d,cid38352,0xe0101,cid62690 911 | 0x8b3e,cid38421,0xe0101,cid62691 912 | 0x8b41,cid38427,0xe0101,cid62692 913 | 0x8b56,cid38473,0xe0101,cid62693 914 | 0x8b56,cid38473,0xe0102,cid62694 915 | 0x8b5a,cid38482,0xe0101,cid62695 916 | 0x8b5c,cid38486,0xe0101,cid62696 917 | 0x8c6a,cid38876,0xe0101,cid62697 918 | 0x8c9b,cid38965,0xe0101,cid62698 919 | 0x8ca0,cid38974,0xe0101,cid62699 920 | 0x8ca0,cid38974,0xe0102,cid62700 921 | 0x8ca7,cid38982,0xe0101,cid62701 922 | 0x8ca8,cid38984,0xe0101,cid62702 923 | 0x8cab,cid38992,0xe0101,cid62703 924 | 0x8cc7,cid39033,0xe0101,cid62704 925 | 0x8cc7,cid39033,0xe0102,cid62705 926 | 0x8cca,cid39039,0xe0101,cid62706 927 | 0x8cca,cid39039,0xe0102,cid62707 928 | 0x8cfc,cid39121,0xe0101,cid62708 929 | 0x8cfc,cid39121,0xe0102,cid62709 930 | 0x8d05,cid39136,0xe0101,cid62710 931 | 0x8d0f,uni8D0F,0xe0101,cid62711 932 | 0x8d70,uni8D70,0xe0101,cid62712 933 | 0x8d73,cid39273,0xe0101,cid62713 934 | 0x8d77,cid39279,0xe0101,cid62714 935 | 0x8d99,cid39328,0xe0101,cid62715 936 | 0x8dda,cid39422,0xe0101,cid62716 937 | 0x8ddd,cid39427,0xe0101,cid62717 938 | 0x8df3,cid39461,0xe0101,cid62718 939 | 0x8e09,cid39492,0xe0101,cid62719 940 | 0x8e34,uni8E34,0xe0101,cid62720 941 | 0x8e8d,cid39720,0xe0101,cid62722 942 | 0x8e91,cid39728,0xe0101,cid62723 943 | 0x8ea1,cid39761,0xe0101,cid62724 944 | 0x8ecc,cid39848,0xe0101,cid62725 945 | 0x8f03,cid39920,0xe0101,cid62726 946 | 0x8f13,cid39945,0xe0101,cid62727 947 | 0x8f29,cid39987,0xe0101,cid62728 948 | 0x8f2f,cid39999,0xe0101,cid62729 949 | 0x8f44,cid40037,0xe0101,cid62730 950 | 0x8f44,cid40037,0xe0102,cid62731 951 | 0x8fbc,cid40229,0xe0101,cid62732 952 | 0x8fc5,cid40252,0xe0101,cid62733 953 | 0x8fc5,cid40252,0xe0102,cid62734 954 | 0x8fc6,uni8FC6,0xe0101,cid62735 955 | 0x8fce,cid40274,0xe0101,cid62736 956 | 0x8fd1,cid40282,0xe0101,cid62737 957 | 0x8fd4,cid40292,0xe0101,cid62738 958 | 0x8fd4,cid40292,0xe0102,cid62739 959 | 0x8fe9,cid40336,0xe0101,cid62740 960 | 0x8fea,uni8FEA,0xe0101,cid62741 961 | 0x8feb,cid40341,0xe0101,cid62742 962 | 0x8fed,cid40346,0xe0101,cid62743 963 | 0x8fef,uni8FEF,0xe0101,cid62744 964 | 0x8ff0,cid40354,0xe0101,cid62745 965 | 0x8ff6,uni8FF6,0xe0101,cid62746 966 | 0x8ff7,cid40371,0xe0101,cid62747 967 | 0x8ffa,uni8FFA,0xe0101,cid62748 968 | 0x8ffd,cid40388,0xe0101,cid62749 969 | 0x9000,cid40396,0xe0101,cid62750 970 | 0x9001,cid40399,0xe0101,cid62751 971 | 0x9003,cid40405,0xe0101,cid62752 972 | 0x9003,cid40405,0xe0102,cid62753 973 | 0x9006,cid40414,0xe0101,cid62754 974 | 0x900e,uni900E,0xe0101,cid62755 975 | 0x900f,cid40434,0xe0101,cid62756 976 | 0x9010,cid40437,0xe0101,cid62757 977 | 0x9014,cid40447,0xe0101,cid62758 978 | 0x901a,cid40464,0xe0101,cid62759 979 | 0x901d,cid40472,0xe0101,cid62760 980 | 0x901e,cid40475,0xe0101,cid62761 981 | 0x901f,cid40478,0xe0101,cid62762 982 | 0x9020,cid40481,0xe0101,cid62763 983 | 0x9022,cid40488,0xe0102,cid62764 984 | 0x902e,cid40513,0xe0101,cid62765 985 | 0x9031,cid40520,0xe0101,cid62766 986 | 0x9032,cid40524,0xe0101,cid62767 987 | 0x9035,uni9035,0xe0101,cid62768 988 | 0x9039,uni9039,0xe0101,cid62769 989 | 0x9054,cid40614,0xe0101,cid62769 990 | 0x9041,cid40561,0xe0101,cid62770 991 | 0x9042,cid40564,0xe0101,cid62771 992 | 0x9042,cid40564,0xe0102,cid62772 993 | 0x9047,cid40576,0xe0101,cid62773 994 | 0x904a,cid40583,0xe0101,cid62774 995 | 0x904b,cid40586,0xe0101,cid62775 996 | 0x904d,cid40592,0xe0101,cid62776 997 | 0x904e,cid40595,0xe0101,cid62777 998 | 0x9050,uni9050,0xe0101,cid62778 999 | 0x9052,uni9052,0xe0101,cid62779 1000 | 0x9053,cid40611,0xe0101,cid62780 1001 | 0x9055,cid40617,0xe0101,cid62781 1002 | 0x9055,cid40617,0xe0102,cid62782 1003 | 0x9058,uni9058,0xe0101,cid62783 1004 | 0x9060,cid40645,0xe0101,cid62784 1005 | 0x9063,cid40654,0xe0101,cid62785 1006 | 0x9069,cid40669,0xe0101,cid62786 1007 | 0x906d,cid40679,0xe0101,cid62787 1008 | 0x906e,cid40682,0xe0101,cid62788 1009 | 0x9075,cid40700,0xe0101,cid62789 1010 | 0x9075,cid40700,0xe0102,cid62790 1011 | 0x9077,cid40706,0xe0101,cid62791 1012 | 0x9077,cid40706,0xe0102,cid62792 1013 | 0x9077,cid40706,0xe0103,cid62793 1014 | 0x9078,cid40709,0xe0101,cid62794 1015 | 0x907a,cid40715,0xe0101,cid62795 1016 | 0x907f,cid40728,0xe0101,cid62796 1017 | 0x9081,uni9081,0xe0101,cid62797 1018 | 0x9083,uni9083,0xe0101,cid62798 1019 | 0x9084,cid40743,0xe0101,cid62799 1020 | 0x9087,cid40751,0xe0101,cid62800 1021 | 0x9089,uni9089,0xe0101,cid62801 1022 | 0x9089,uni9089,0xe0102,cid62802 1023 | 0x9089,uni9089,0xe0103,cid62803 1024 | 0x9089,uni9089,0xe0104,cid62804 1025 | 0x9089,uni9089,0xe0105,cid62805 1026 | 0x9089,uni9089,0xe0106,cid62806 1027 | 0x9089,uni9089,0xe0107,cid62807 1028 | 0x9089,uni9089,0xe0108,cid62808 1029 | 0x9089,uni9089,0xe0109,cid62809 1030 | 0x9089,uni9089,0xe010a,cid62810 1031 | 0x9089,uni9089,0xe010b,cid62811 1032 | 0x9089,uni9089,0xe010c,cid62812 1033 | 0x9089,uni9089,0xe010d,cid62813 1034 | 0x9089,uni9089,0xe010e,cid62814 1035 | 0x908a,cid40759,0xe0101,cid62815 1036 | 0x908a,cid40759,0xe0102,cid62816 1037 | 0x908a,cid40759,0xe0103,cid62817 1038 | 0x908a,cid40759,0xe0104,cid62818 1039 | 0x908a,cid40759,0xe0105,cid62819 1040 | 0x908a,cid40759,0xe0106,cid62820 1041 | 0x908a,cid40759,0xe0107,cid62821 1042 | 0x90a3,cid40801,0xe0101,cid62822 1043 | 0x90a6,cid40805,0xe0101,cid62823 1044 | 0x90a6,cid40805,0xe0102,cid62824 1045 | 0x90a8,uni90A8,0xe0101,cid62825 1046 | 0x90aa,cid40811,0xe0101,cid62826 1047 | 0x90aa,cid40811,0xe0102,cid62827 1048 | 0x90f7,cid40930,0xe0101,cid62828 1049 | 0x9130,uni9130,0xe0101,cid62829 1050 | 0x914c,cid41087,0xe0101,cid62830 1051 | 0x914d,cid41089,0xe0101,cid62831 1052 | 0x9156,cid41105,0xe0101,cid62832 1053 | 0x9158,cid41110,0xe0101,cid62833 1054 | 0x9165,uni9165,0xe0101,cid62834 1055 | 0x9172,uni9172,0xe0101,cid62835 1056 | 0x9173,uni9173,0xe0101,cid62836 1057 | 0x9177,cid41166,0xe0101,cid62837 1058 | 0x91a2,uni91A2,0xe0101,cid62838 1059 | 0x91aa,uni91AA,0xe0101,cid62839 1060 | 0x91af,uni91AF,0xe0101,cid62840 1061 | 0x91b1,uni91B1,0xe0101,cid62841 1062 | 0x91b4,cid41292,0xe0101,cid62842 1063 | 0x91ba,cid41305,0xe0101,cid62843 1064 | 0x91c1,uni91C1,0xe0101,cid62844 1065 | 0x91c7,cid41335,0xe0101,cid62845 1066 | 0x91e3,cid41380,0xe0101,cid62846 1067 | 0x91fc,cid41426,0xe0101,cid62847 1068 | 0x9237,cid41542,0xe0101,cid62848 1069 | 0x925b,cid41610,0xe0101,cid62849 1070 | 0x925b,cid41610,0xe0102,cid62850 1071 | 0x92e9,uni92E9,0xe0101,cid62851 1072 | 0x9335,uni9335,0xe0101,cid62852 1073 | 0x9365,uni9365,0xe0101,cid62853 1074 | 0x938b,cid42204,0xe0101,cid62854 1075 | 0x938c,cid42206,0xe0101,cid62855 1076 | 0x9396,cid42226,0xe0101,cid62856 1077 | 0x93a1,cid42252,0xe0101,cid62857 1078 | 0x93ae,cid42280,0xe0101,cid62858 1079 | 0x93dd,cid42371,0xe0101,cid62859 1080 | 0x9477,cid42674,0xe0101,cid62860 1081 | 0x9592,uni9592,0xe0101,cid62861 1082 | 0x95ab,uni95AB,0xe0101,cid62862 1083 | 0x95bb,cid43045,0xe0101,cid62863 1084 | 0x95bc,uni95BC,0xe0101,cid62864 1085 | 0x95cd,cid43078,0xe0101,cid62865 1086 | 0x962a,cid43195,0xe0101,cid62866 1087 | 0x9686,cid43344,0xe0102,cid62868 1088 | 0x968a,cid43352,0xe0101,cid62869 1089 | 0x9694,cid43371,0xe0101,cid62870 1090 | 0x9698,cid43378,0xe0101,cid62871 1091 | 0x9698,cid43378,0xe0102,cid62872 1092 | 0x96a3,cid43396,0xe0102,cid62874 1093 | 0x96a7,cid43404,0xe0101,cid62875 1094 | 0x96b2,uni96B2,0xe0101,cid62876 1095 | 0x96bb,cid43446,0xe0101,cid62877 1096 | 0x96c5,cid43463,0xe0101,cid62878 1097 | 0x96c5,cid43463,0xe0102,cid62879 1098 | 0x96c7,cid43469,0xe0101,cid62880 1099 | 0x96d9,cid43504,0xe0101,cid62881 1100 | 0x96da,cid43506,0xe0101,cid62882 1101 | 0x96ea,cid43538,0xe0101,cid62883 1102 | 0x96f0,cid43548,0xe0101,cid62884 1103 | 0x9721,cid43651,0xe0101,cid62885 1104 | 0x9724,uni9724,0xe0101,cid62886 1105 | 0x973d,uni973D,0xe0101,cid62887 1106 | 0x9755,uni9755,0xe0101,cid62888 1107 | 0x9759,cid43772,0xe0101,cid62889 1108 | 0x975c,cid43780,0xe0101,cid62890 1109 | 0x975c,cid43780,0xe0102,cid62891 1110 | 0x9760,uni9760,0xe0101,cid62892 1111 | 0x9760,uni9760,0xe0102,cid62893 1112 | 0x976d,cid43813,0xe0101,cid62894 1113 | 0x976d,cid43813,0xe0102,cid62895 1114 | 0x9771,cid43820,0xe0101,cid62896 1115 | 0x9774,cid43825,0xe0101,cid62897 1116 | 0x97d3,cid43985,0xe0101,cid62898 1117 | 0x97de,uni97DE,0xe0101,cid62899 1118 | 0x97f3,uni97F3,0xe0101,cid62900 1119 | 0x97ff,cid44063,0xe0102,cid62901 1120 | 0x97ff,cid44063,0xe0103,cid62902 1121 | 0x97ff,cid44063,0xe0104,cid62903 1122 | 0x980c,cid44081,0xe0101,cid62904 1123 | 0x9811,cid44089,0xe0101,cid62905 1124 | 0x9812,cid44091,0xe0101,cid62906 1125 | 0x9813,cid44093,0xe0101,cid62907 1126 | 0x9824,uni9824,0xe0101,cid62908 1127 | 0x9867,cid44225,0xe0101,cid62909 1128 | 0x9873,uni9873,0xe0101,cid62910 1129 | 0x98c3,uni98C3,0xe0101,cid62911 1130 | 0x98e2,cid44417,0xe0101,cid62912 1131 | 0x98eb,cid44440,0xe0101,cid62913 1132 | 0x98ef,cid44450,0xe0102,cid62914 1133 | 0x98fd,cid44482,0xe0101,cid62915 1134 | 0x98fe,cid44485,0xe0101,cid62916 1135 | 0x9903,cid44495,0xe0101,cid62917 1136 | 0x9909,cid44509,0xe0101,cid62918 1137 | 0x990a,cid44512,0xe0101,cid62919 1138 | 0x990c,cid44516,0xe0101,cid62920 1139 | 0x990c,cid44516,0xe0102,cid62921 1140 | 0x9913,cid44532,0xe0101,cid62922 1141 | 0x9921,cid44571,0xe0101,cid62923 1142 | 0x9945,cid44662,0xe0101,cid62924 1143 | 0x9945,cid44662,0xe0102,cid62925 1144 | 0x994b,cid44678,0xe0101,cid62926 1145 | 0x9957,cid44710,0xe0102,cid62927 1146 | 0x9957,cid44710,0xe0103,cid62928 1147 | 0x99d0,cid44878,0xe0101,cid62929 1148 | 0x9a30,cid45043,0xe0101,cid62930 1149 | 0x9a45,cid45083,0xe0101,cid62931 1150 | 0x9a5f,uni9A5F,0xe0101,cid62932 1151 | 0x9a65,uni9A65,0xe0101,cid62933 1152 | 0x9aef,uni9AEF,0xe0101,cid62934 1153 | 0x9b18,uni9B18,0xe0101,cid62935 1154 | 0x9b2d,uni9B2D,0xe0101,cid62936 1155 | 0x9b2e,uni9B2E,0xe0101,cid62937 1156 | 0x9b35,cid45531,0xe0101,cid62938 1157 | 0x9b4d,cid45587,0xe0101,cid62939 1158 | 0x9b54,cid45604,0xe0101,cid62940 1159 | 0x9b58,uni9B58,0xe0101,cid62941 1160 | 0x9b97,cid45707,0xe0101,cid62942 1161 | 0x9ba8,cid45729,0xe0101,cid62943 1162 | 0x9bae,cid45739,0xe0101,cid62944 1163 | 0x9bb9,uni9BB9,0xe0101,cid62945 1164 | 0x9bc6,cid45773,0xe0101,cid62946 1165 | 0x9bdb,cid45804,0xe0101,cid62947 1166 | 0x9be1,uni9BE1,0xe0101,cid62948 1167 | 0x9bf1,uni9BF1,0xe0101,cid62949 1168 | 0x9bf2,uni9BF2,0xe0101,cid62950 1169 | 0x9c08,cid45882,0xe0101,cid62951 1170 | 0x9c24,cid45926,0xe0101,cid62952 1171 | 0x9c3b,cid45977,0xe0101,cid62953 1172 | 0x9c48,cid46001,0xe0101,cid62954 1173 | 0x9c57,cid46027,0xe0101,cid62955 1174 | 0x9ce6,cid46200,0xe0101,cid62956 1175 | 0x9d07,cid46244,0xe0101,cid62957 1176 | 0x9d08,uni9D08,0xe0101,cid62958 1177 | 0x9d48,uni9D48,0xe0101,cid62959 1178 | 0x9d6c,cid46403,0xe0101,cid62960 1179 | 0x9dbf,cid46545,0xe0101,cid62961 1180 | 0x9dc0,cid46548,0xe0101,cid62962 1181 | 0x9dc2,uni9DC2,0xe0101,cid62963 1182 | 0x9dcf,uni9DCF,0xe0101,cid62964 1183 | 0x9e9f,cid46908,0xe0101,cid62966 1184 | 0x9e9f,cid46908,0xe0102,cid62967 1185 | 0x9ea5,uni9EA5,0xe0101,cid62968 1186 | 0x9eaa,uni9EAA,0xe0101,cid62969 1187 | 0x9ead,uni9EAD,0xe0101,cid62970 1188 | 0x9ebb,uni9EBB,0xe0101,cid62971 1189 | 0x9ebf,cid46986,0xe0101,cid62972 1190 | 0x9ecc,uni9ECC,0xe0101,cid62973 1191 | 0x9edb,cid47043,0xe0101,cid62974 1192 | 0x9f08,uni9F08,0xe0101,cid62975 1193 | 0x9f08,uni9F08,0xe0102,cid62976 1194 | 0x9f3b,uni9F3B,0xe0101,cid62977 1195 | 0x9f4a,uni9F4A,0xe0101,cid62978 1196 | 0x9f4b,cid47287,0xe0101,cid62979 1197 | 0x9f4e,cid47294,0xe0101,cid62980 1198 | 0x9f67,uni9F67,0xe0101,cid62981 1199 | 0x9f8d,uni9F8D,0xe0101,cid62982 1200 | 0x9f8d,uni9F8D,0xe0102,cid62983 1201 | 0x9f9d,uni9F9D,0xe0101,cid62985 1202 | 0xfa11,cid58828,0xe0101,cid62986 1203 | 0xfa24,uniFA24,0xe0101,cid62987 1204 | 0x235c4,cid60215,0xe0101,cid62988 1205 | 0x2363a,cid60226,0xe0101,cid62989 1206 | 0x2383d,cid60263,0xe0101,cid62990 1207 | 0x26270,cid60811,0xe0101,cid62991 1208 | 0x29d4b,cid61449,0xe0101,cid62992 1209 | 0x29e3d,cid61459,0xe0101,cid62993 1210 | 0x2a61a,cid61526,0xe0101,cid62994 1211 | 0x3001,cid01390,0xfe01,cid63030 1212 | 0x3002,cid01391,0xfe01,cid63031 1213 | 0xff01,cid58992,0xfe00,cid63032 1214 | 0xff0c,cid59003,0xfe01,cid63033 1215 | 0xff0e,cid59005,0xfe01,cid63034 1216 | 0xff1a,cid59017,0xfe00,cid63035 1217 | 0xff1b,cid59018,0xfe00,cid63036 1218 | 0xff1f,cid59022,0xfe00,cid63037 1219 | 0x738b,cid26732,0xe0101, 1220 | 0x4eca,cid10137,0xe0101,cid61578 1221 | 0x52e2,cid11890,0xe0101,cid61579 1222 | 0x5ea7,cid17375,0xe0101,cid61584 1223 | 0x687a,uni687A,0xe0101,cid61588 1224 | 0x2363a,cid60226,0xe0102,cid61590 1225 | 0x83df,cid34681,0xe0103,cid61598 1226 | 0x885e,uni885E,0xe0101,cid61600 1227 | 0x943a,uni943A,0xe0101,cid61602 1228 | 0x5c0f,uni5C0F,0xe0102, 1229 | 0x7f50,cid32244,0xe0101, 1230 | 0x8870,cid37020,0xe0101, 1231 | 0x8e4a,uni8E4A,0xe0101, 1232 | 0x4f60,uni4F60,0xe0101,cid61719 1233 | 0x5154,cid11240,0xe0100,cid61720 1234 | 0x518d,cid11332,0xe0100,cid61721 1235 | 0x51ac,cid11380,0xe0100,cid61722 1236 | 0x5272,cid11700,0xe0100,cid61723 1237 | 0x52fa,cid11930,0xe0100,cid61725 1238 | 0x537f,cid12166,0xe0100,cid61726 1239 | 0x5468,cid12527,0xe0100,cid61728 1240 | 0x5584,cid12963,0xe0101,cid61730 1241 | 0x57ce,cid13945,0xe0100,cid61731 1242 | 0x59ec,uni59EC,0xe0101,cid61732 1243 | 0x5bc3,uni5BC3,0xe0101,cid61733 1244 | 0x5c06,cid16155,0xe0100,cid61734 1245 | 0x5dfd,cid17097,0xe0100,cid61736 1246 | 0x5f62,cid17742,0xe0101,cid61738 1247 | 0x5f6b,cid17757,0xe0101,cid61739 1248 | 0x6148,cid18552,0xe0101,cid61740 1249 | 0x61b2,cid18753,0xe0101,cid61742 1250 | 0x6210,cid18925,0xe0101,cid61743 1251 | 0x62d4,uni62D4,0xe0100,cid61744 1252 | 0x5195,uni5195,0xe0100,cid61746 1253 | 0x675e,cid21233,0xe0101, 1254 | 0x6852,uni6852,0xe0100,cid61747 1255 | 0x681f,cid21536,0xe0101,cid61748 1256 | 0x69ea,cid22352,0xe0101,u2F8EA 1257 | 0x6cbf,cid23647,0xe0100,cid61750 1258 | 0x6d69,cid23902,0xe0101,cid61751 1259 | 0x6ecb,cid24496,0xe0101,cid61752 1260 | 0x6f6e,cid24784,0xe0100,cid61753 1261 | 0x70ad,cid25381,0xe0101,cid61754 1262 | 0x7228,uni7228,0xe0100,cid61755 1263 | 0x7235,cid26172,0xe0100,cid61756 1264 | 0x771e,cid28328,0xe0100,cid61757 1265 | 0x771f,cid28330,0xe0101,cid61758 1266 | 0x7d63,cid31367,0xe0101,cid61759 1267 | 0x82bd,cid34079,0xe0100,cid61761 1268 | 0x8aed,cid38245,0xe0100,cid61764 1269 | 0x8ed4,uni8ED4,0xe0100,cid61766 1270 | 0x8f38,cid40016,0xe0101,cid61767 1271 | 0x5db2,cid16966,0xe0100,u2F9F4 1272 | 0x5c0f,uni5C0F,0xe0101,cid01354 1273 | 0x5f50,uni5F50,0xe0101,uni2E95 1274 | 0x6c3a,cid23447,0xe0101,cid01361 1275 | 0x89d2,uni89D2,0xe0100,uni2EC6 1276 | 0x96e8,uni96E8,0xe0101,cid01375 1277 | 0x98df,uni98DF,0xe0101,uni2EDD 1278 | 0x6881,cid21695,0xe0101,cid47522 1279 | 0x7953,cid29255,0xe0101,cid47525 1280 | 0x9f9c,uni9F9C,0xe0101, 1281 | 0x5951,cid14605,0xe0101,cid58810 1282 | 0x6b04,cid22859,0xfe00,cid58811 1283 | 0x6b04,cid22859,0xe0100,cid58811 1284 | 0x862d,cid36027,0xe0101,cid58812 1285 | 0x5eca,cid17443,0xfe00,cid58813 1286 | 0x5eca,cid17443,0xe0101,cid58813 1287 | 0x6717,cid21116,0xfe00,uniF929 1288 | 0x6717,cid21116,0xe0100,uniF929 1289 | 0x865c,cid36130,0xfe00,cid58815 1290 | 0x865c,cid36130,0xe0100,cid58815 1291 | 0x6bba,cid23223,0xfe00,cid58816 1292 | 0x6bba,cid23223,0xe0100,cid58816 1293 | 0x65c5,cid20550,0xe0101,cid58817 1294 | 0x9e97,cid46887,0xe0101,cid62965 1295 | 0x84ee,cid35280,0xe0100,cid58818 1296 | 0x9023,cid40492,0xe0100,cid58819 1297 | 0x5ec9,cid17441,0xe0100,cid58820 1298 | 0x907c,cid40720,0xe0101,cid58821 1299 | 0x985e,cid44210,0xfe00,cid58822 1300 | 0x985e,cid44210,0xe0100,cid58822 1301 | 0x9686,cid43344,0xfe00,uniF9DC 1302 | 0x9686,cid43344,0xe0101,uniF9DC 1303 | 0x96a3,cid43396,0xe0101,cid62873 1304 | 0x7cd6,cid31081,0xe0100,cid58824 1305 | 0x964d,cid43244,0xe0101,cid62867 1306 | 0x585a,cid14185,0xfe00,uniFA10.dup2 1307 | 0x585a,cid14185,0xe0101,uniFA10.dup2 1308 | 0x6674,cid20838,0xfe00,uniFA12 1309 | 0x6674,cid20838,0xe0100,uniFA12 1310 | 0x51de,uni51DE,0xfe00,uniFA15 1311 | 0x51de,uni51DE,0xe0101,uniFA15 1312 | 0x732a,cid26557,0xfe00,uniFA16 1313 | 0x732a,cid26557,0xe0100,uniFA16 1314 | 0x76ca,cid28195,0xfe00,uniFA17 1315 | 0x76ca,cid28195,0xe0101,uniFA17 1316 | 0x793c,cid29213,0xfe00,uniFA18 1317 | 0x793c,cid29213,0xe0101,uniFA18 1318 | 0x795e,cid29278,0xfe00,uniFA19 1319 | 0x795e,cid29278,0xe0100,uniFA19 1320 | 0x7965,cid29291,0xfe00,uniFA1A 1321 | 0x7965,cid29291,0xe0100,uniFA1A 1322 | 0x798f,cid29366,0xfe00,uniFA1B 1323 | 0x798f,cid29366,0xe0101,uniFA1B 1324 | 0x9756,cid43763,0xfe00,uniFA1C 1325 | 0x9756,cid43763,0xe0101,uniFA1C 1326 | 0x7cbe,cid31029,0xfe00,uniFA1D 1327 | 0x7cbe,cid31029,0xe0100,uniFA1D 1328 | 0x7fbd,uni7FBD,0xfe00,uniFA1E 1329 | 0x7fbd,uni7FBD,0xe0100,uniFA1E 1330 | 0x8612,uni8612,0xfe00,uniFA20 1331 | 0x8612,uni8612,0xe0102,uniFA20 1332 | 0x8af8,cid38271,0xfe00,uniFA22 1333 | 0x8af8,cid38271,0xe0100,uniFA22 1334 | 0x9038,cid40542,0xfe00,uniFA25 1335 | 0x9038,cid40542,0xe0102,uniFA25 1336 | 0x90fd,cid40938,0xfe00,uniFA26 1337 | 0x90fd,cid40938,0xe0100,uniFA26 1338 | 0x98ef,cid44450,0xfe00,uniFA2A 1339 | 0x98ef,cid44450,0xe0100,uniFA2A 1340 | 0x98fc,cid44479,0xfe00,uniFA2B 1341 | 0x98fc,cid44479,0xe0101,uniFA2B 1342 | 0x9928,cid44587,0xfe00,uniFA2C 1343 | 0x9928,cid44587,0xe0101,uniFA2C 1344 | 0x9db4,cid46522,0xfe00,uniFA2D 1345 | 0x9db4,cid46522,0xe0100,uniFA2D 1346 | 0x4fae,cid10482,0xfe00,cid58857 1347 | 0x4fae,cid10482,0xe0101,cid58857 1348 | 0x50e7,cid11044,0xfe00,cid58858 1349 | 0x50e7,cid11044,0xe0101,cid58858 1350 | 0x514d,cid11228,0xfe00,cid58859 1351 | 0x514d,cid11228,0xe0101,cid58859 1352 | 0x52c9,cid11848,0xfe00,cid58860 1353 | 0x52c9,cid11848,0xe0100,cid58860 1354 | 0x52e4,cid11894,0xfe00,cid58861 1355 | 0x52e4,cid11894,0xe0101,cid58861 1356 | 0x5351,cid12090,0xfe00,cid58862 1357 | 0x5351,cid12090,0xe0100,cid58862 1358 | 0x559d,cid13009,0xfe00,cid58863 1359 | 0x559d,cid13009,0xe0101,cid58863 1360 | 0x5606,cid13200,0xfe00,cid58864 1361 | 0x5606,cid13200,0xe0100,cid58864 1362 | 0x5668,cid13371,0xfe00,cid58865 1363 | 0x5668,cid13371,0xe0101,cid58865 1364 | 0x5840,cid14133,0xfe00,cid58866 1365 | 0x5840,cid14133,0xe0101,cid58866 1366 | 0x58a8,cid14318,0xfe00,cid58867 1367 | 0x58a8,cid14318,0xe0100,cid58867 1368 | 0x5c64,cid16308,0xfe00,cid58868 1369 | 0x5c64,cid16308,0xe0101,cid58868 1370 | 0x5c6e,cid16324,0xfe00,cid58869 1371 | 0x5c6e,cid16324,0xe0100,cid58869 1372 | 0x6094,cid18235,0xfe00,cid58870 1373 | 0x6094,cid18235,0xe0100,cid58870 1374 | 0x6168,cid18614,0xfe00,cid58871 1375 | 0x6168,cid18614,0xe0101,cid58871 1376 | 0x618e,cid18692,0xfe00,cid58872 1377 | 0x618e,cid18692,0xe0100,cid58872 1378 | 0x61f2,cid18873,0xfe00,cid58873 1379 | 0x61f2,cid18873,0xe0103,cid58873 1380 | 0x654f,cid20340,0xfe00,cid58874 1381 | 0x654f,cid20340,0xe0100,cid58874 1382 | 0x65e2,cid20608,0xfe00,cid58875 1383 | 0x65e2,cid20608,0xe0100,cid58875 1384 | 0x6691,cid20886,0xfe00,cid58876 1385 | 0x6691,cid20886,0xe0101,cid58876 1386 | 0x6885,cid21701,0xfe00,cid58877 1387 | 0x6885,cid21701,0xe0100,cid58877 1388 | 0x6d77,cid23922,0xfe00,cid58878 1389 | 0x6d77,cid23922,0xe0100,cid58878 1390 | 0x6e1a,cid24189,0xfe00,cid58879 1391 | 0x6e1a,cid24189,0xe0100,cid58879 1392 | 0x6f22,cid24652,0xfe00,cid58880 1393 | 0x6f22,cid24652,0xe0101,cid58880 1394 | 0x716e,cid25758,0xfe00,cid58881 1395 | 0x716e,cid25758,0xe0100,cid58881 1396 | 0x722b,uni722B,0xfe00,uniFA49 1397 | 0x722b,uni722B,0xe0101,uniFA49 1398 | 0x7422,cid26945,0xfe00,cid58883 1399 | 0x7422,cid26945,0xe0100,cid58883 1400 | 0x7891,cid28916,0xfe00,cid58884 1401 | 0x7891,cid28916,0xe0100,cid58884 1402 | 0x793e,cid29217,0xfe00,cid58885 1403 | 0x793e,cid29217,0xe0101,cid58885 1404 | 0x7949,cid29239,0xfe00,cid58886 1405 | 0x7949,cid29239,0xe0101,cid58886 1406 | 0x7948,cid29237,0xfe00,cid58887 1407 | 0x7948,cid29237,0xe0100,cid58887 1408 | 0x7950,cid29250,0xfe00,cid58888 1409 | 0x7950,cid29250,0xe0100,cid58888 1410 | 0x7956,cid29262,0xfe00,cid58889 1411 | 0x7956,cid29262,0xe0101,cid58889 1412 | 0x795d,cid29276,0xfe00,cid58890 1413 | 0x795d,cid29276,0xe0100,cid58890 1414 | 0x798d,cid29361,0xfe00,cid58891 1415 | 0x798d,cid29361,0xe0100,cid58891 1416 | 0x798e,cid29364,0xfe00,cid58892 1417 | 0x798e,cid29364,0xe0101,cid58892 1418 | 0x7a40,cid29684,0xfe00,cid58893 1419 | 0x7a40,cid29684,0xe0100,cid58893 1420 | 0x7a81,cid29809,0xfe00,cid58894 1421 | 0x7a81,cid29809,0xe0101,cid58894 1422 | 0x7bc0,cid30477,0xfe00,cid58895 1423 | 0x7bc0,cid30477,0xe0101,cid58895 1424 | 0x7df4,cid31674,0xfe01, 1425 | 0x7df4,cid31674,0xe0100, 1426 | 0x7e09,uni7E09,0xfe00,cid58897 1427 | 0x7e09,uni7E09,0xe0101,cid58897 1428 | 0x7e41,cid31829,0xfe00,cid58898 1429 | 0x7e41,cid31829,0xe0101,cid58898 1430 | 0x7f72,cid32301,0xfe00,cid58899 1431 | 0x7f72,cid32301,0xe0100,cid58899 1432 | 0x8005,cid32591,0xfe00,cid58900 1433 | 0x8005,cid32591,0xe0101,cid58900 1434 | 0x81ed,cid33613,0xfe00,cid58901 1435 | 0x81ed,cid33613,0xe0101,cid58901 1436 | 0x8279,uni8279,0xfe00,uniFA5D 1437 | 0x8279,uni8279,0xe0101,uniFA5D 1438 | 0x8279,uni8279,0xfe01,uniFA5E 1439 | 0x8279,uni8279,0xe0102,uniFA5E 1440 | 0x8457,cid34940,0xfe00,cid58904 1441 | 0x8457,cid34940,0xe0101,cid58904 1442 | 0x8910,cid37316,0xfe00,cid58905 1443 | 0x8910,cid37316,0xe0101,cid58905 1444 | 0x8996,cid37588,0xfe00,cid58906 1445 | 0x8996,cid37588,0xe0101,cid58906 1446 | 0x8b01,cid38290,0xfe00,cid58907 1447 | 0x8b01,cid38290,0xe0100,cid58907 1448 | 0x8b39,cid38411,0xfe00,cid58908 1449 | 0x8b39,cid38411,0xe0100,cid58908 1450 | 0x8cd3,cid39056,0xfe00,cid58909 1451 | 0x8cd3,cid39056,0xe0100,cid58909 1452 | 0x8d08,cid39143,0xfe00,cid58910 1453 | 0x8d08,cid39143,0xe0101,cid58910 1454 | 0x8fb6,uni8FB6,0xfe00,uniFA66 1455 | 0x8fb6,uni8FB6,0xe0101,uniFA66 1456 | 0x9038,cid40542,0xfe01,cid58912 1457 | 0x9038,cid40542,0xe0101,cid58912 1458 | 0x96e3,cid43527,0xfe00,cid58913 1459 | 0x96e3,cid43527,0xe0100,cid58913 1460 | 0x97ff,cid44063,0xfe00,cid58914 1461 | 0x97ff,cid44063,0xe0101,cid58914 1462 | 0x983b,cid44156,0xfe00,cid58915 1463 | 0x983b,cid44156,0xe0100,cid58915 1464 | 0x6075,cid18187,0xfe00,cid58916 1465 | 0x6075,cid18187,0xe0101,cid58916 1466 | 0x242ee,cid60412,0xfe00,cid58917 1467 | 0x242ee,cid60412,0xe0101,cid58917 1468 | 0x8218,cid33705,0xfe00,cid58918 1469 | 0x8218,cid33705,0xe0101,cid58918 1470 | --------------------------------------------------------------------------------