From af5b95b08da2216e23d3b8840e7feabbc24dedd8 Mon Sep 17 00:00:00 2001 From: dchandler Date: Sun, 15 Jun 2003 03:25:45 +0000 Subject: [PATCH] A TMW->Unicode table is here. Note these issues, however: Is the EWTS '_' to be represented as U+0020, or is it a wider space? Does TMW9.42, Dza, map to U+0F5F,U+0F39? Does TMW6.60, r+y, map to U+0F62,U+0FBB or to U+0F6A,U+0FBB? (Likewise with r+w, TMW6.61, TMW6.62, etc.) Is U+0F7E a bindu? What Unicode does TMW7.96 map to, for example? What does TMW7.91 map to? Should TMW8.97 and TMW8.98 map to swastiskas elsewhere in Unicode? If so, which codepoints? Likewise with TMW9.60, a Chinese character. Does TMW7.68 map to U+0F39? Does TMW7.74, the ITHI secret sign, have a Unicode mapping? f68,fa0,f80,f72 comes close, but fa0 would be too large, wouldn't it? What Unicode does TMW9.61 map to? Is it for sequences like f40,f7c,f60,f72? Or is it for f60,f72,f7c? --- .../org/thdl/tib/text/TibetanMachineWeb.java | 77 +- source/org/thdl/tib/text/tibwn.ini | 1552 +++++++++-------- 2 files changed, 840 insertions(+), 789 deletions(-) diff --git a/source/org/thdl/tib/text/TibetanMachineWeb.java b/source/org/thdl/tib/text/TibetanMachineWeb.java index de5fcdd..fb6702c 100644 --- a/source/org/thdl/tib/text/TibetanMachineWeb.java +++ b/source/org/thdl/tib/text/TibetanMachineWeb.java @@ -31,6 +31,7 @@ import org.thdl.util.ThdlDebug; import org.thdl.util.ThdlLazyException; import org.thdl.util.Trie; import org.thdl.util.ThdlOptions; +import org.thdl.tib.text.tshegbar.UnicodeCodepointToThdlWylie; /** * Interfaces between Extended Wylie and the TibetanMachineWeb fonts. @@ -388,18 +389,13 @@ public class TibetanMachineWeb implements THDLWylieConstants { String wylie = null; DuffCode[] duffCodes; - if (ignore) { - duffCodes = new DuffCode[TMW + 1]; - } else { - duffCodes = new DuffCode[11]; - } + duffCodes = new DuffCode[11]; int k = 0; StringBuffer escapedToken = new StringBuffer(""); ThdlDebug.verify(escapedToken.length() == 0); - while (st.hasMoreTokens() - && (!ignore || (k <= 3 /* 3 from 'case 3:' */))) { + while (st.hasMoreTokens()) { String val = getEscapedToken(st, escapedToken); if (val.equals(DELIMITER) @@ -413,9 +409,7 @@ public class TibetanMachineWeb implements THDLWylieConstants { switch (k) { case 0: //wylie key - if (!ignore) { - wylie = val; - } + wylie = val; break; case 1: @@ -454,23 +448,50 @@ public class TibetanMachineWeb implements THDLWylieConstants { case 8: case 9: if (!ignore) { + try { duffCodes[k-1] = new DuffCode(val,true); + } catch (Exception e) { + System.err.println("Couldn't make a DuffCode out of " + val + "; line is " + line + "; k is " + k); + } } - break; + break; case 10: //Unicode: ignore for now - StringTokenizer uTok = new StringTokenizer(val, ","); - while (uTok.hasMoreTokens()) { - String subval = uTok.nextToken(); - ThdlDebug.verify(subval.length() == 4); - try { - int x; - ThdlDebug.verify(((x = Integer.parseInt(subval, 16)) >= 0x0F00 - && x <= 0x0FFF) - || x == 0x0020); - } catch (NumberFormatException e) { - ThdlDebug.verify(false); + if (!val.equals("none")) { + StringBuffer unicodeBuffer = new StringBuffer(); + StringTokenizer uTok = new StringTokenizer(val, ","); + while (uTok.hasMoreTokens()) { + String subval = uTok.nextToken(); + ThdlDebug.verify(subval.length() == 4 || subval.length() == 3); + try { + int x; + ThdlDebug.verify(((x = Integer.parseInt(subval, 16)) >= 0x0F00 + && x <= 0x0FFF) + || x == 0x0020); + unicodeBuffer.append((char)x); + } catch (NumberFormatException e) { + ThdlDebug.verify(false); + } } + // DLC FIXME: use unicodeBuffer for a TMW->Unicode conversion. + + // For V&V: + +// DLC FIXME: also check for ^[90-bc] and ^.+[40-6a] + +// StringBuffer wylie_minus_plusses_buf +// = UnicodeCodepointToThdlWylie.getThdlWylieForUnicodeString(unicodeBuffer.toString()); +// String wylie_minus_plusses +// = ((wylie_minus_plusses_buf == null) +// ? null +// : wylie_minus_plusses_buf.toString().replaceAll("(.)\\+","$1")); +// if (null == wylie +// || null == wylie_minus_plusses +// || !(wylie.replaceAll("(.)\\+","$1").equals(wylie_minus_plusses) +// || wylie.replaceAll("(.)-","$1").equals(wylie_minus_plusses) +// || wylie.equals(wylie_minus_plusses))) { +// System.out.println("wylie: " + wylie + "; wylie_minus_plusses: " + wylie_minus_plusses); +// } } break; @@ -486,9 +507,19 @@ public class TibetanMachineWeb implements THDLWylieConstants { binduMap.put(duffCodes[TMW],binduCode); } break; + case 13: + throw new Error("tibwn.ini has only 13 columns, you tried to use a 14th column."); } - } + } else { + if (k == 10) { + throw new Error("needed none or some unicode; line is " + line); + } + } } + if (k < 10) { + throw new Error("needed none or some unicode; line is " + line); + } + if (!ignore) { if (null == wylie) diff --git a/source/org/thdl/tib/text/tibwn.ini b/source/org/thdl/tib/text/tibwn.ini index b735013..8af91a6 100644 --- a/source/org/thdl/tib/text/tibwn.ini +++ b/source/org/thdl/tib/text/tibwn.ini @@ -27,22 +27,34 @@ _, ,/,|,!,:,;,@,#,$,%,(,),H,M,`,&,@#,?,=,[,],<,>,{,},* //_~32,1~0,32 // ~45,1~0,45~~~~~~~0F0B +// DLC 0020 or a wider space? _~32,1~~1,32~~~~~~~0020 ~45,1~~1,45~~~~~~~0F0B /~202,1~~1,107~~~~~~~0F0D +// rinchen shad: |~203,1~~1,103~~~~~~~0F11 +// sbrul shad: !~204,1~~1,104~~~~~~~0F08 +// gter tsheg: :~206,1~~1,105~~~~~~~0F14 +// shad + single tsheg: ;~40,5~~9,43~~~~~~~0F0F +// zla tse gcig: @~210,1~~9,38~~~~~~~0F04 +// yig.mgo.phur.shad: $~38,5~~9,41~~~~~~~0F06 +// half zla tse gcig: #~200,1~~9,39~~~~~~~0F05 +// Yig.mgo.tsheg.shad: %~39,5~~9,42~~~~~~~0F07 +// dbu.khang.g-yon: (~208,1~~9,93~~~~~~~0F3C +// dbu.khang.g-yas: )~209,1~~9,94~~~~~~~0F3D H~239,1~~8,92~~~~~~~0F7F M~238,1~~8,90~~~~~~~0F7E &~177,4~~8,93~~~~~~~0F85 +// zla tse gnyis: @#~201,1~~9,40~~~~~~~0F04,0F05 // abbreviation sign: =~207,1~~1,106~~~~~~~0F34 @@ -67,11 +79,11 @@ M~238,1~~8,90~~~~~~~0F7E -// FIXME: 0F5F,0F39 might work, but the OpenType font's author must've had Dza +// DLC FIXME: 0F5F,0F39 might work, but the OpenType font's author must've had Dza // in mind if it does. Dz~146,5~~10,42~~~~~~~0F5F,0F39 f~153,5~~10,58~1,110~1,223~1,125~1,126~10,114~10,123~0F55,0F39 -v~154,5~~10,59~1,110~1,223~1,125~1,126~10,114~10,123 +v~154,5~~10,59~1,110~1,223~1,125~1,126~10,114~10,123~0F56,f39 k~33,1~1,92~1,33~1,109~1,111~1,123~1,125~10,118~10,120~0F40 kh~34,1~~1,34~1,109~1,118~1,123~1,125~10,114~10,123~0F41 g~35,1~1,93~1,35~1,109~1,111~1,123~1,125~10,118~10,120~0F42 @@ -79,7 +91,7 @@ ng~36,1~~1,36~1,109~1,118~1,123~1,125~10,114~10,123~0F44 c~37,1~~1,37~1,109~1,116~1,123~1,125~10,114~10,123~0F45 ch~38,1~~1,38~1,109~1,117~1,123~1,125~10,114~10,123~0F46 j~39,1~~1,39~1,109~1,118~1,123~1,125~10,114~10,123~0F47 -ny~40,1~1,94~1,40~1,109~1,112~1,123~1,125~10,115~10,121~0F48 +ny~40,1~1,94~1,40~1,109~1,112~1,123~1,125~10,115~10,121~0F49 t~41,1~1,95~1,41~1,109~1,112~1,123~1,125~10,115~10,121~0F4F th~42,1~~1,42~1,109~1,118~1,123~1,125~10,114~10,123~0F50 d~43,1~1,96~1,43~1,109~1,111~1,123~1,125~10,118~10,120~0F51 @@ -101,105 +113,105 @@ l~58,1~~1,59~1,109~1,118~1,123~1,125~10,114~10,123~0F63 sh~59,1~1,99~1,60~1,109~1,111~1,123~1,125~10,118~10,120~0F64 s~60,1~~1,61~1,109~1,118~1,123~1,125~10,114~10,123~0F66 h~61,1~1,100~1,62~1,109~1,112~1,123~1,125~10,115~10,122~0F67~1,102 -a~62,1~~1,63~1,109~1,118~1,123~1,125~10,114~10,123~0F6A +a~62,1~~1,63~1,109~1,118~1,123~1,125~10,114~10,123~0F68 T~170,1~~1,64~1,109~1,120~1,123~1,125~10,115~10,124~0F4A Th~171,1~~1,65~1,109~1,118~1,123~1,125~10,114~10,123~0F4B D~172,1~~1,66~1,109~1,120~1,123~1,125~10,115~10,124~0F4C N~173,1~~1,67~1,109~1,118~1,123~1,125~10,115~10,124~0F4E Sh~174,1~~1,68~1,109~1,118~1,123~1,125~10,115~10,124~0F65 -r-k~63,1~~1,70~1,109~1,121~1,123~1,125~10,115~10,124 -r-g~64,1~~1,71~1,109~1,121~1,123~1,125~10,115~10,124 -r-ng~65,1~~1,72~1,109~1,119~1,123~1,125~10,115~10,124 -r-j~66,1~~1,73~1,109~1,119~1,123~1,125~10,115~10,124 -r-ny~67,1~~1,74~1,109~1,113~1,123~1,125~10,116~10,125 -r-t~68,1~1,101~1,75~1,109~1,113~1,123~1,125~10,116~10,124 -r-d~69,1~~1,76~1,109~1,121~1,123~1,125~10,115~10,124 -r-n~70,1~~1,77~1,109~1,121~1,123~1,125~10,115~10,124 -r-b~71,1~~1,78~1,109~1,119~1,123~1,125~10,115~10,124 -r-m~72,1~~1,79~1,109~1,119~1,123~1,125~10,115~10,124 -r-ts~73,1~~1,80~1,109~1,119~1,123~1,125~10,115~10,124 -r-dz~74,1~~1,81~1,109~1,119~1,123~1,125~10,115~10,124 -l-k~75,1~~1,82~1,109~1,114~1,123~1,125~10,116~10,125 -l-g~76,1~~1,83~1,109~1,114~1,123~1,125~10,116~10,125 -l-ng~77,1~~1,84~1,109~1,122~1,123~1,125~10,116~10,125 -l-c~78,1~~1,85~1,109~1,122~1,123~1,125~10,116~10,125 -l-j~79,1~~1,86~1,109~1,122~1,123~1,125~10,116~10,125 -l-t~80,1~~1,87~1,109~1,115~1,123~1,125~10,116~10,125 -l-d~81,1~~1,88~1,109~1,114~1,123~1,125~10,116~10,125 -l-p~82,1~~1,89~1,109~1,122~1,123~1,125~10,116~10,125 -l-b~83,1~~1,90~1,109~1,122~1,123~1,125~10,116~10,125 -l-h~84,1~~1,91~1,109~1,115~1,123~1,125~10,116~10,125 -s-k~85,1~~2,33~1,109~2,113~1,123~1,125~10,116~10,125 -s-g~86,1~~2,34~1,109~2,113~1,123~1,125~10,116~10,125 -s-ng~87,1~~2,35~1,109~2,116~1,123~1,125~10,116~10,125 -s-ny~88,1~~2,36~1,109~2,114~1,123~1,125~10,116~10,125 -s-t~89,1~~2,37~1,109~2,114~1,123~1,125~10,116~10,125 -s-d~90,1~~2,38~1,109~2,113~1,123~1,125~10,116~10,125 -s-n~91,1~~2,39~1,109~2,113~1,123~1,125~10,116~10,125 -s-p~92,1~~2,40~1,109~2,116~1,123~1,125~10,116~10,125 -s-b~93,1~~2,41~1,109~2,116~1,123~1,125~10,116~10,125 -s-m~94,1~~2,42~1,109~2,116~1,123~1,125~10,116~10,125 -s-ts~95,1~~2,43~1,109~2,116~1,123~1,125~10,116~10,125 -k-w~138,1~~2,44~1,109~2,116~1,123~1,125~10,116~10,125 -kh-w~139,1~~2,46~1,109~2,116~1,123~1,125~10,116~10,125 -g-w~140,1~~2,47~1,109~2,116~1,123~1,125~10,116~10,125 -c-w~141,1~~2,48~1,109~2,116~1,123~1,125~10,116~10,125 -ny-w~157,1~~2,49~1,109~2,116~1,123~1,125~10,116~10,125 -t-w~143,1~~2,50~1,109~2,116~1,123~1,125~10,116~10,125 -d-w~144,1~~2,51~1,109~2,116~1,123~1,125~10,116~10,125 -ts-w~145,1~~2,52~1,110~2,116~1,124~1,126~10,116~10,125 -tsh-w~146,1~~2,53~1,110~2,116~1,124~1,126~10,116~10,125 -zh-w~147,1~~2,54~1,109~2,116~1,123~1,125~10,116~10,125 -z-w~148,1~~2,55~1,109~2,116~1,123~1,125~10,116~10,125 -r-w~149,1~~2,56~1,109~2,116~1,123~1,125~10,115~10,125 -sh-w~150,1~~2,57~1,109~2,116~1,123~1,125~10,116~10,125 -s-w~151,1~~2,58~1,109~2,116~1,123~1,125~10,115~10,125 -h-w~152,1~~2,59~1,109~2,116~1,123~1,125~10,116~10,125 -k-y~96,1~~2,60~1,109~2,111~1,123~1,125~10,115~10,124 -kh-y~97,1~~2,61~1,109~2,111~1,123~1,125~10,115~10,124 -g-y~98,1~~2,62~1,109~2,111~1,123~1,125~10,115~10,124 -p-y~99,1~~2,63~1,109~2,112~1,123~1,125~10,116~10,125 -ph-y~100,1~~2,64~1,109~2,112~1,123~1,125~10,116~10,125 -b-y~101,1~~2,65~1,109~2,112~1,123~1,125~10,116~10,125 -m-y~102,1~~2,66~1,109~2,112~1,123~1,125~10,116~10,125 -k-r~103,1~~2,67~1,109~2,115~1,123~1,125~10,115~10,124 -kh-r~104,1~~2,68~1,109~2,115~1,123~1,125~10,115~10,124 -g-r~105,1~~2,69~1,109~2,115~1,123~1,125~10,115~10,124 -t-r~106,1~~2,70~1,109~2,115~1,123~1,125~10,115~10,124 -th-r~107,1~~2,71~1,109~2,115~1,123~1,125~10,115~10,124 -d-r~108,1~~2,72~1,109~2,115~1,123~1,125~10,115~10,124 -p-r~109,1~~2,73~1,109~2,115~1,123~1,125~10,115~10,124 -ph-r~110,1~~2,74~1,109~2,115~1,123~1,125~10,115~10,124 -b-r~111,1~~2,75~1,109~2,115~1,123~1,125~10,115~10,124 -m-r~112,1~~2,76~1,109~2,115~1,123~1,125~10,115~10,124 -sh-r~113,1~~2,77~1,109~2,115~1,123~1,125~10,115~10,124 -s-r~114,1~~2,78~1,109~2,115~1,123~1,125~10,115~10,124 -h-r~115,1~~2,79~1,109~2,115~1,123~1,125~10,115~10,124 -k-l~116,1~~2,80~1,109~2,116~1,123~1,125~10,116~10,125 -g-l~117,1~~2,81~1,109~2,116~1,123~1,125~10,116~10,125 -b-l~118,1~~2,82~1,109~2,116~1,123~1,125~10,116~10,125 -z-l~119,1~~2,83~1,109~2,116~1,123~1,125~10,116~10,125 -r-l~120,1~~2,84~1,109~2,116~1,123~1,125~10,116~10,125 -s-l~121,1~~2,85~1,109~2,116~1,123~1,125~10,116~10,125 -r-k-y~122,1~~2,86~1,109~2,118~1,123~1,125~10,116~10,125 -r-g-y~123,1~~2,87~1,109~2,118~1,123~1,125~10,116~10,125 -r-m-y~124,1~~2,88~1,109~2,118~1,123~1,125~10,116~10,125 -r-g-w~125,1~~2,89~1,109~2,117~1,123~1,125~10,117~10,126 -r-ts-w~126,1~~2,90~1,109~2,117~1,123~1,125~10,117~10,126 -s-k-y~254,1~~2,91~1,109~2,119~1,123~1,125~10,117~10,126 -s-g-y~128,1~~2,92~1,109~2,119~1,123~1,125~10,117~10,126 -s-p-y~129,1~~2,93~1,109~2,119~1,123~1,125~10,117~10,126 -s-b-y~130,1~~2,94~1,109~2,119~1,123~1,125~10,117~10,126 -s-m-y~131,1~~2,95~1,109~2,117~1,123~1,125~10,117~10,126 -s-k-r~132,1~~2,96~1,109~2,117~1,123~1,125~10,117~10,126 -s-g-r~133,1~~2,97~1,109~2,117~1,123~1,125~10,117~10,126 -s-n-r~134,1~~2,98~1,109~2,117~1,123~1,125~10,117~10,126 -s-p-r~135,1~~2,99~1,109~2,117~1,123~1,125~10,117~10,126 -s-b-r~136,1~~2,100~1,109~2,117~1,123~1,125~10,117~10,126 -s-m-r~137,1~~2,101~1,109~2,117~1,123~1,125~10,117~10,126 -g-r-w~153,1~~2,102~1,109~2,116~1,123~1,125~10,115~10,124 -d-r-w~154,1~~2,103~1,109~~1,123~1,125~~ -ph-y-w~155,1~~2,104~1,109~~1,123~1,125~~ +r-k~63,1~~1,70~1,109~1,121~1,123~1,125~10,115~10,124~f62,f90 +r-g~64,1~~1,71~1,109~1,121~1,123~1,125~10,115~10,124~f62,f92 +r-ng~65,1~~1,72~1,109~1,119~1,123~1,125~10,115~10,124~f62,f94 +r-j~66,1~~1,73~1,109~1,119~1,123~1,125~10,115~10,124~f62,f97 +r-ny~67,1~~1,74~1,109~1,113~1,123~1,125~10,116~10,125~f62,f99 +r-t~68,1~1,101~1,75~1,109~1,113~1,123~1,125~10,116~10,124~f62,f9f +r-d~69,1~~1,76~1,109~1,121~1,123~1,125~10,115~10,124~f62,fa1 +r-n~70,1~~1,77~1,109~1,121~1,123~1,125~10,115~10,124~f62,fa3 +r-b~71,1~~1,78~1,109~1,119~1,123~1,125~10,115~10,124~f62,fa6 +r-m~72,1~~1,79~1,109~1,119~1,123~1,125~10,115~10,124~f62,fa8 +r-ts~73,1~~1,80~1,109~1,119~1,123~1,125~10,115~10,124~f62,fa9 +r-dz~74,1~~1,81~1,109~1,119~1,123~1,125~10,115~10,124~f62,fab +l-k~75,1~~1,82~1,109~1,114~1,123~1,125~10,116~10,125~f63,f90 +l-g~76,1~~1,83~1,109~1,114~1,123~1,125~10,116~10,125~f63,f92 +l-ng~77,1~~1,84~1,109~1,122~1,123~1,125~10,116~10,125~f63,f94 +l-c~78,1~~1,85~1,109~1,122~1,123~1,125~10,116~10,125~f63,f95 +l-j~79,1~~1,86~1,109~1,122~1,123~1,125~10,116~10,125~f63,f97 +l-t~80,1~~1,87~1,109~1,115~1,123~1,125~10,116~10,125~f63,f9f +l-d~81,1~~1,88~1,109~1,114~1,123~1,125~10,116~10,125~f63,fa1 +l-p~82,1~~1,89~1,109~1,122~1,123~1,125~10,116~10,125~f63,fa4 +l-b~83,1~~1,90~1,109~1,122~1,123~1,125~10,116~10,125~f63,fa6 +l-h~84,1~~1,91~1,109~1,115~1,123~1,125~10,116~10,125~f63,fb7 +s-k~85,1~~2,33~1,109~2,113~1,123~1,125~10,116~10,125~f66,f90 +s-g~86,1~~2,34~1,109~2,113~1,123~1,125~10,116~10,125~f66,f92 +s-ng~87,1~~2,35~1,109~2,116~1,123~1,125~10,116~10,125~f66,f94 +s-ny~88,1~~2,36~1,109~2,114~1,123~1,125~10,116~10,125~f66,f99 +s-t~89,1~~2,37~1,109~2,114~1,123~1,125~10,116~10,125~f66,f9f +s-d~90,1~~2,38~1,109~2,113~1,123~1,125~10,116~10,125~f66,fa1 +s-n~91,1~~2,39~1,109~2,113~1,123~1,125~10,116~10,125~f66,fa3 +s-p~92,1~~2,40~1,109~2,116~1,123~1,125~10,116~10,125~f66,fa4 +s-b~93,1~~2,41~1,109~2,116~1,123~1,125~10,116~10,125~f66,fa6 +s-m~94,1~~2,42~1,109~2,116~1,123~1,125~10,116~10,125~f66,fa8 +s-ts~95,1~~2,43~1,109~2,116~1,123~1,125~10,116~10,125~f66,fa9 +k-w~138,1~~2,44~1,109~2,116~1,123~1,125~10,116~10,125~f40,fad +kh-w~139,1~~2,46~1,109~2,116~1,123~1,125~10,116~10,125~f41,fad +g-w~140,1~~2,47~1,109~2,116~1,123~1,125~10,116~10,125~f42,fad +c-w~141,1~~2,48~1,109~2,116~1,123~1,125~10,116~10,125~f45,fad +ny-w~157,1~~2,49~1,109~2,116~1,123~1,125~10,116~10,125~f49,fad +t-w~143,1~~2,50~1,109~2,116~1,123~1,125~10,116~10,125~f4f,fad +d-w~144,1~~2,51~1,109~2,116~1,123~1,125~10,116~10,125~f51,fad +ts-w~145,1~~2,52~1,110~2,116~1,124~1,126~10,116~10,125~f59,fad +tsh-w~146,1~~2,53~1,110~2,116~1,124~1,126~10,116~10,125~f5a,fad +zh-w~147,1~~2,54~1,109~2,116~1,123~1,125~10,116~10,125~f5e,fad +z-w~148,1~~2,55~1,109~2,116~1,123~1,125~10,116~10,125~f5f,fad +r-w~149,1~~2,56~1,109~2,116~1,123~1,125~10,115~10,125~f62,fad +sh-w~150,1~~2,57~1,109~2,116~1,123~1,125~10,116~10,125~f64,fad +s-w~151,1~~2,58~1,109~2,116~1,123~1,125~10,115~10,125~f66,fad +h-w~152,1~~2,59~1,109~2,116~1,123~1,125~10,116~10,125~f67,fad +k-y~96,1~~2,60~1,109~2,111~1,123~1,125~10,115~10,124~f40,fb1 +kh-y~97,1~~2,61~1,109~2,111~1,123~1,125~10,115~10,124~f41,fb1 +g-y~98,1~~2,62~1,109~2,111~1,123~1,125~10,115~10,124~f42,fb1 +p-y~99,1~~2,63~1,109~2,112~1,123~1,125~10,116~10,125~f54,fb1 +ph-y~100,1~~2,64~1,109~2,112~1,123~1,125~10,116~10,125~f55,fb1 +b-y~101,1~~2,65~1,109~2,112~1,123~1,125~10,116~10,125~f56,fb1 +m-y~102,1~~2,66~1,109~2,112~1,123~1,125~10,116~10,125~f58,fb1 +k-r~103,1~~2,67~1,109~2,115~1,123~1,125~10,115~10,124~f40,fb2 +kh-r~104,1~~2,68~1,109~2,115~1,123~1,125~10,115~10,124~f41,fb2 +g-r~105,1~~2,69~1,109~2,115~1,123~1,125~10,115~10,124~f42,fb2 +t-r~106,1~~2,70~1,109~2,115~1,123~1,125~10,115~10,124~f4f,fb2 +th-r~107,1~~2,71~1,109~2,115~1,123~1,125~10,115~10,124~f50,fb2 +d-r~108,1~~2,72~1,109~2,115~1,123~1,125~10,115~10,124~f51,fb2 +p-r~109,1~~2,73~1,109~2,115~1,123~1,125~10,115~10,124~f54,fb2 +ph-r~110,1~~2,74~1,109~2,115~1,123~1,125~10,115~10,124~f55,fb2 +b-r~111,1~~2,75~1,109~2,115~1,123~1,125~10,115~10,124~f56,fb2 +m-r~112,1~~2,76~1,109~2,115~1,123~1,125~10,115~10,124~f58,fb2 +sh-r~113,1~~2,77~1,109~2,115~1,123~1,125~10,115~10,124~f64,fb2 +s-r~114,1~~2,78~1,109~2,115~1,123~1,125~10,115~10,124~f66,fb2 +h-r~115,1~~2,79~1,109~2,115~1,123~1,125~10,115~10,124~f67,fb2 +k-l~116,1~~2,80~1,109~2,116~1,123~1,125~10,116~10,125~f40,fb3 +g-l~117,1~~2,81~1,109~2,116~1,123~1,125~10,116~10,125~f42,fb3 +b-l~118,1~~2,82~1,109~2,116~1,123~1,125~10,116~10,125~f56,fb3 +z-l~119,1~~2,83~1,109~2,116~1,123~1,125~10,116~10,125~f5f,fb3 +r-l~120,1~~2,84~1,109~2,116~1,123~1,125~10,116~10,125~f62,fb3 +s-l~121,1~~2,85~1,109~2,116~1,123~1,125~10,116~10,125~f66,fb3 +r-k-y~122,1~~2,86~1,109~2,118~1,123~1,125~10,116~10,125~f62,f90,fb1 +r-g-y~123,1~~2,87~1,109~2,118~1,123~1,125~10,116~10,125~f62,f92,fb1 +r-m-y~124,1~~2,88~1,109~2,118~1,123~1,125~10,116~10,125~f62,fa8,fb1 +r-g-w~125,1~~2,89~1,109~2,117~1,123~1,125~10,117~10,126~f62,f92,fad +r-ts-w~126,1~~2,90~1,109~2,117~1,123~1,125~10,117~10,126~f62,fa9,fad +s-k-y~254,1~~2,91~1,109~2,119~1,123~1,125~10,117~10,126~f66,f90,fb1 +s-g-y~128,1~~2,92~1,109~2,119~1,123~1,125~10,117~10,126~f66,f92,fb1 +s-p-y~129,1~~2,93~1,109~2,119~1,123~1,125~10,117~10,126~f66,fa4,fb1 +s-b-y~130,1~~2,94~1,109~2,119~1,123~1,125~10,117~10,126~f66,fa6,fb1 +s-m-y~131,1~~2,95~1,109~2,117~1,123~1,125~10,117~10,126~f66,fa8,fb1 +s-k-r~132,1~~2,96~1,109~2,117~1,123~1,125~10,117~10,126~f66,f90,fb2 +s-g-r~133,1~~2,97~1,109~2,117~1,123~1,125~10,117~10,126~f66,f92,fb2 +s-n-r~134,1~~2,98~1,109~2,117~1,123~1,125~10,117~10,126~f66,fa3,fb2 +s-p-r~135,1~~2,99~1,109~2,117~1,123~1,125~10,117~10,126~f66,fa4,fb2 +s-b-r~136,1~~2,100~1,109~2,117~1,123~1,125~10,117~10,126~f66,fa6,fb2 +s-m-r~137,1~~2,101~1,109~2,117~1,123~1,125~10,117~10,126~f66,fa8,fb2 +g-r-w~153,1~~2,102~1,109~2,116~1,123~1,125~10,115~10,124~f42,fb2,fad +d-r-w~154,1~~2,103~1,109~~1,123~1,125~~~f51,fb2,fad +ph-y-w~155,1~~2,104~1,109~~1,123~1,125~~~f55,fb1,fad -i~222,1~~8,87~~~~~~~0F80~~8,98 @@ -209,459 +221,462 @@ au~237,1~~8,89~~~~~~~0F7D~~8,104 k+Sh~175,1~~1,69~1,109~1,122~1,123~1,125~10,116~10,125~0F69 -k+k~33,2~~3,33~1,109~4,120~1,123~1,125~4,106~4,113 -k+kh~34,2~~3,34~1,109~4,120~1,123~1,125~4,106~4,113 -k+ng~35,2~~3,35~1,109~4,120~1,123~1,125~4,106~4,113 -k+ts~36,2~~3,36~1,109~4,120~1,123~1,125~4,106~4,113 -k+t~37,2~~3,37~1,109~4,120~1,123~1,125~4,106~4,113 -k+t+y~38,2~~3,38~1,109~4,121~1,123~1,125~4,107~4,114 -k+t+r~39,2~~3,39~1,109~4,121~1,123~1,125~4,107~4,114 -k+t+r+y~40,2~~3,40~1,109~4,123~1,123~1,125~4,109~4,116 -k+t+w~41,2~~3,41~1,109~4,121~1,123~1,125~4,107~4,114 -k+th~42,2~~3,42~1,109~4,120~1,123~1,125~4,106~4,113 -k+th+y~43,2~~3,43~1,109~4,122~1,123~1,125~4,108~4,115 -k+N~44,2~~3,44~1,109~4,120~1,123~1,125~4,106~4,113 -k+n~252,2~~3,46~1,109~4,120~1,123~1,125~4,106~4,113 -k+n+y~46,2~~3,47~1,109~4,122~1,123~1,125~4,108~4,115 -k+ph~47,2~~3,48~1,109~4,120~1,123~1,125~4,106~4,113 -k+m~48,2~~3,49~1,109~4,120~1,123~1,125~4,106~4,113 -k+m+y~49,2~~3,50~1,109~4,122~1,123~1,125~4,108~4,115 -k+r+y~50,2~~3,51~1,109~4,120~1,123~1,125~4,106~4,113 -k+w+y~192,4~~3,52~1,109~8,121~1,123~1,125~8,107~8,114 -k+sh~51,2~~3,53~1,109~4,120~1,123~1,125~4,106~4,113 -k+s~52,2~~3,54~1,109~4,120~1,123~1,125~4,106~4,113 -k+s+n~53,2~~3,55~1,109~4,124~1,123~1,125~4,110~4,117 -k+s+m~54,2~~3,56~1,109~4,123~1,123~1,125~4,109~4,116 -k+s+y~55,2~~3,57~1,109~4,122~1,123~1,125~4,108~4,115 -k+s+w~56,2~~3,58~1,109~4,122~1,123~1,125~4,108~4,115 -kh+kh~59,2~~3,61~1,109~4,120~1,123~1,125~4,106~4,113 -kh+n~60,2~~3,62~1,109~4,120~1,123~1,125~4,106~4,113 -kh+l~61,2~~3,63~1,109~4,120~1,123~1,125~4,106~4,113 -g+g~62,2~~3,64~1,109~4,120~1,123~1,125~4,106~4,113 -g+g+h~63,2~~3,65~1,109~4,124~1,123~1,125~4,110~4,117 -g+ny~64,2~~3,66~1,109~4,120~1,123~1,125~4,106~4,113 -g+d~65,2~~3,67~1,109~4,120~1,123~1,125~4,106~4,113 -g+d+h~66,2~~3,68~1,109~4,123~1,123~1,125~4,109~4,116 -g+d+h+y~67,2~~3,69~1,109~4,125~1,123~1,125~4,111~4,118 -g+d+h+w~68,2~~3,70~1,109~4,125~1,123~1,125~4,111~4,118 -g+n~69,2~~3,71~1,109~4,120~1,123~1,125~4,106~4,113 -g+n+y~70,2~~3,72~1,109~4,122~1,123~1,125~4,108~4,115 -g+p~71,2~~3,73~1,109~4,120~1,123~1,125~4,106~4,113 -g+b+h~72,2~~3,74~1,109~4,124~1,123~1,125~4,110~4,117 -g+b+h+y~73,2~~3,75~1,109~4,125~1,123~1,125~4,111~4,118 -g+m~74,2~~3,76~1,109~4,120~1,123~1,125~4,106~4,113 -g+m+y~75,2~~3,77~1,109~4,122~1,123~1,125~4,108~4,115 -g+r+y~76,2~~3,78~1,109~4,120~1,123~1,125~4,106~4,113 +k+k~33,2~~3,33~1,109~4,120~1,123~1,125~4,106~4,113~f40,f90 +k+kh~34,2~~3,34~1,109~4,120~1,123~1,125~4,106~4,113~f40,f91 +k+ng~35,2~~3,35~1,109~4,120~1,123~1,125~4,106~4,113~f40,f94 +k+ts~36,2~~3,36~1,109~4,120~1,123~1,125~4,106~4,113~f40,fa9 +k+t~37,2~~3,37~1,109~4,120~1,123~1,125~4,106~4,113~f40,f9f +k+t+y~38,2~~3,38~1,109~4,121~1,123~1,125~4,107~4,114~f40,f9f,fb1 +k+t+r~39,2~~3,39~1,109~4,121~1,123~1,125~4,107~4,114~f40,f9f,fb2 +k+t+r+y~40,2~~3,40~1,109~4,123~1,123~1,125~4,109~4,116~f40,f9f,fb2,fb1 +k+t+w~41,2~~3,41~1,109~4,121~1,123~1,125~4,107~4,114~f40,f9f,fad +k+th~42,2~~3,42~1,109~4,120~1,123~1,125~4,106~4,113~f40,fa0 +k+th+y~43,2~~3,43~1,109~4,122~1,123~1,125~4,108~4,115~f40,fa0,fb1 +k+N~44,2~~3,44~1,109~4,120~1,123~1,125~4,106~4,113~f40,f9e +k+n~252,2~~3,46~1,109~4,120~1,123~1,125~4,106~4,113~f40,fa3 +k+n+y~46,2~~3,47~1,109~4,122~1,123~1,125~4,108~4,115~f40,fa3,fb1 +k+ph~47,2~~3,48~1,109~4,120~1,123~1,125~4,106~4,113~f40,fa5 +k+m~48,2~~3,49~1,109~4,120~1,123~1,125~4,106~4,113~f40,fa8 +k+m+y~49,2~~3,50~1,109~4,122~1,123~1,125~4,108~4,115~f40,fa8,fb1 +k+r+y~50,2~~3,51~1,109~4,120~1,123~1,125~4,106~4,113~f40,fb2,fb1 +k+w+y~192,4~~3,52~1,109~8,121~1,123~1,125~8,107~8,114~f40,fad,fb1 +k+sh~51,2~~3,53~1,109~4,120~1,123~1,125~4,106~4,113~f40,fb4 +k+s~52,2~~3,54~1,109~4,120~1,123~1,125~4,106~4,113~f40,fb6 +k+s+n~53,2~~3,55~1,109~4,124~1,123~1,125~4,110~4,117~f40,fb6,fa3 +k+s+m~54,2~~3,56~1,109~4,123~1,123~1,125~4,109~4,116~f40,fb6,fa8 +k+s+y~55,2~~3,57~1,109~4,122~1,123~1,125~4,108~4,115~f40,fb6,fb1 +k+s+w~56,2~~3,58~1,109~4,122~1,123~1,125~4,108~4,115~f40,fb6,fad +kh+kh~59,2~~3,61~1,109~4,120~1,123~1,125~4,106~4,113~f41,f91 +kh+n~60,2~~3,62~1,109~4,120~1,123~1,125~4,106~4,113~f41,fa3 +kh+l~61,2~~3,63~1,109~4,120~1,123~1,125~4,106~4,113~f41,fb3 +g+g~62,2~~3,64~1,109~4,120~1,123~1,125~4,106~4,113~f42,f92 +g+g+h~63,2~~3,65~1,109~4,124~1,123~1,125~4,110~4,117~f42,f92,fb7 +g+ny~64,2~~3,66~1,109~4,120~1,123~1,125~4,106~4,113~f42,f99 +g+d~65,2~~3,67~1,109~4,120~1,123~1,125~4,106~4,113~f42,fa1 +g+d+h~66,2~~3,68~1,109~4,123~1,123~1,125~4,109~4,116~f42,fa1,fb7 +g+d+h+y~67,2~~3,69~1,109~4,125~1,123~1,125~4,111~4,118~f42,fa1,fb7,fb1 +g+d+h+w~68,2~~3,70~1,109~4,125~1,123~1,125~4,111~4,118~f42,fa1,fb7,fad +g+n~69,2~~3,71~1,109~4,120~1,123~1,125~4,106~4,113~f42,fa3 +g+n+y~70,2~~3,72~1,109~4,122~1,123~1,125~4,108~4,115~f42,fa3,fb1 +g+p~71,2~~3,73~1,109~4,120~1,123~1,125~4,106~4,113~f42,fa4 +g+b+h~72,2~~3,74~1,109~4,124~1,123~1,125~4,110~4,117~f42,fa6,fb7 +g+b+h+y~73,2~~3,75~1,109~4,125~1,123~1,125~4,111~4,118~f42,fa6,fb7,fb1 +g+m~74,2~~3,76~1,109~4,120~1,123~1,125~4,106~4,113~f42,fa8 +g+m+y~75,2~~3,77~1,109~4,122~1,123~1,125~4,108~4,115~f42,fa8,fb1 +g+r+y~76,2~~3,78~1,109~4,120~1,123~1,125~4,106~4,113~f42,fb2,fb1 g+h~77,2~~3,79~1,109~4,120~1,123~1,125~4,106~4,113~0F43 -g+h+g+h~78,2~~3,80~1,109~4,126~1,123~1,125~4,112~4,119 -g+h+ny~79,2~~3,81~1,109~4,124~1,123~1,125~4,110~4,117 -g+h+n~80,2~~3,82~1,109~4,124~1,123~1,125~4,110~4,117 -g+h+n+y~81,2~~3,83~1,109~4,125~1,123~1,125~4,111~4,118 -g+h+m~82,2~~3,84~1,109~4,124~1,123~1,125~4,110~4,117 -g+h+l~83,2~~3,85~1,109~4,124~1,123~1,125~4,110~4,117 -g+h+y~84,2~~3,86~1,109~4,121~1,123~1,125~4,107~4,114 -g+h+r~85,2~~3,87~1,109~4,121~1,123~1,125~4,107~4,114 -g+h+w~86,2~~3,88~1,109~4,121~1,123~1,125~4,107~4,114 -ng+k~87,2~~3,89~1,109~4,120~1,123~1,125~4,106~4,113 -ng+k+t~88,2~~3,90~1,109~4,124~1,123~1,125~4,110~4,117 -ng+k+t+y~89,2~~3,91~1,109~4,125~1,123~1,125~4,111~4,118 -ng+k+y~90,2~~3,92~1,109~4,122~1,123~1,125~4,108~4,115 -ng+kh~91,2~~3,93~1,109~4,120~1,123~1,125~4,106~4,113 -ng+kh+y~92,2~~3,94~1,109~4,122~1,123~1,125~4,108~4,115 -ng+g~93,2~~3,95~1,109~4,120~1,123~1,125~4,106~4,113 -ng+g+r~94,2~~3,96~1,109~4,121~1,123~1,125~4,107~4,114 -ng+g+y~95,2~~3,97~1,109~4,122~1,123~1,125~4,108~4,115 -ng+g+h~96,2~~3,98~1,109~4,124~1,123~1,125~4,110~4,117 -ng+g+h+y~97,2~~3,99~1,109~4,125~1,123~1,125~4,111~4,118 -ng+g+h+r~98,2~~3,100~1,109~4,125~1,123~1,125~4,111~4,118 -ng+ng~99,2~~3,101~1,109~4,120~1,123~1,125~4,106~4,113 -ng+t~100,2~~3,102~1,109~4,120~1,123~1,125~4,106~4,113 -ng+n~101,2~~3,103~1,109~4,120~1,123~1,125~4,106~4,113 -ng+m~102,2~~3,104~1,109~4,120~1,123~1,125~4,106~4,113 -ng+y~103,2~~3,105~1,109~4,120~1,123~1,125~4,106~4,113 -ng+l~104,2~~3,106~1,109~4,120~1,123~1,125~4,106~4,113 -ng+sh~105,2~~3,107~1,109~4,120~1,123~1,125~4,106~4,113 -ng+h~106,2~~3,108~1,109~4,120~1,123~1,125~4,106~4,113 -ng+k+Sh~107,2~~3,109~1,109~4,123~1,123~1,125~4,109~4,116 -ng+k+Sh+w~108,2~~3,110~1,109~4,124~1,123~1,125~4,110~4,117 -ng+k+Sh+y~109,2~~3,111~1,109~4,125~1,123~1,125~4,111~4,118 -ts+ts~110,2~~3,112~1,110~4,120~1,125~1,126~4,106~4,113 -ts+tsh~111,2~~3,113~1,110~4,120~1,125~1,126~4,106~4,113 -ts+tsh+w~112,2~~3,114~1,110~4,122~1,125~1,126~4,108~4,115 -ts+tsh+r~113,2~~3,115~1,110~4,122~1,125~1,126~4,108~4,115 -ts+ny~114,2~~3,116~1,110~4,120~1,125~1,126~4,106~4,113 -ts+ny~115,2~~3,117~1,110~4,122~1,125~1,126~4,108~4,115 -ts+m~116,2~~3,118~1,110~4,120~1,125~1,126~4,106~4,113 -ts+y~117,2~~3,119~1,110~4,120~1,125~1,126~4,106~4,113 -ts+r~118,2~~3,120~1,110~4,120~1,125~1,126~4,106~4,113 -ts+l~119,2~~3,121~1,110~4,120~1,125~1,126~4,106~4,113 -ts+h+y~120,2~~3,122~1,110~4,122~1,125~1,126~4,108~4,115 -tsh+th~121,2~~3,123~1,110~4,120~1,125~1,126~4,106~4,113 -tsh+tsh~122,2~~3,124~1,110~4,120~1,125~1,126~4,106~4,113 -tsh+y~123,2~~3,125~1,110~4,120~1,125~1,126~4,106~4,113 -tsh+r~124,2~~3,126~1,110~4,120~1,125~1,126~4,106~4,113 -tsh+l~125,2~~4,33~1,110~4,120~1,125~1,126~4,106~4,113 -dz+dz~126,2~~4,34~1,110~4,120~1,125~1,126~4,106~4,113 -dz+dz+ny~253,2~~4,35~1,110~4,124~1,125~1,126~4,110~4,117 -dz+dz+w~128,2~~4,36~1,110~4,123~1,125~1,126~4,109~4,116 -dz+dz+h~129,2~~4,37~1,110~4,124~1,125~1,126~4,110~4,117 -dz+h+dz+h~130,2~~4,38~1,110~4,126~1,125~1,126~4,112~4,119 -dz+ny~131,2~~4,39~1,110~4,120~1,125~1,126~4,106~4,113 -dz+ny+y~132,2~~4,40~1,110~4,122~1,125~1,126~4,108~4,115 -dz+n~133,2~~4,41~1,110~4,120~1,125~1,126~4,106~4,113 -dz+n+w~134,2~~4,42~1,110~4,122~1,125~1,126~4,108~4,115 -dz+m~135,2~~4,43~1,110~4,120~1,125~1,126~4,106~4,113 -dz+y~136,2~~4,44~1,110~4,120~1,125~1,126~4,106~4,113 -dz+r~137,2~~4,46~1,110~4,120~1,123~1,126~4,106~4,113 -dz+w~138,2~~4,47~1,110~4,120~1,123~1,126~4,106~4,113 +g+h+g+h~78,2~~3,80~1,109~4,126~1,123~1,125~4,112~4,119~f43,f92,fb7 +g+h+ny~79,2~~3,81~1,109~4,124~1,123~1,125~4,110~4,117~f43,f99 +g+h+n~80,2~~3,82~1,109~4,124~1,123~1,125~4,110~4,117~f43,fa3 +g+h+n+y~81,2~~3,83~1,109~4,125~1,123~1,125~4,111~4,118~f43,fa3,fb1 +g+h+m~82,2~~3,84~1,109~4,124~1,123~1,125~4,110~4,117~f43,fa8 +g+h+l~83,2~~3,85~1,109~4,124~1,123~1,125~4,110~4,117~f43,fb3 +g+h+y~84,2~~3,86~1,109~4,121~1,123~1,125~4,107~4,114~f43,fb1 +g+h+r~85,2~~3,87~1,109~4,121~1,123~1,125~4,107~4,114~f43,fb2 +g+h+w~86,2~~3,88~1,109~4,121~1,123~1,125~4,107~4,114~f43,fad +ng+k~87,2~~3,89~1,109~4,120~1,123~1,125~4,106~4,113~f44,f90 +ng+k+t~88,2~~3,90~1,109~4,124~1,123~1,125~4,110~4,117~f44,f90,f9f +ng+k+t+y~89,2~~3,91~1,109~4,125~1,123~1,125~4,111~4,118~f44,f90,f9f,fb1 +ng+k+y~90,2~~3,92~1,109~4,122~1,123~1,125~4,108~4,115~f44,f90,fb1 +ng+kh~91,2~~3,93~1,109~4,120~1,123~1,125~4,106~4,113~f44,f91 +ng+kh+y~92,2~~3,94~1,109~4,122~1,123~1,125~4,108~4,115~f44,f91,fb1 +ng+g~93,2~~3,95~1,109~4,120~1,123~1,125~4,106~4,113~f44,f92 +ng+g+r~94,2~~3,96~1,109~4,121~1,123~1,125~4,107~4,114~f44,f92,fb2 +ng+g+y~95,2~~3,97~1,109~4,122~1,123~1,125~4,108~4,115~f44,f92,fb1 +ng+g+h~96,2~~3,98~1,109~4,124~1,123~1,125~4,110~4,117~f44,f92,fb7 +ng+g+h+y~97,2~~3,99~1,109~4,125~1,123~1,125~4,111~4,118~f44,f92,fb7,fb1 +ng+g+h+r~98,2~~3,100~1,109~4,125~1,123~1,125~4,111~4,118~f44,f92,fb7,fb2 +ng+ng~99,2~~3,101~1,109~4,120~1,123~1,125~4,106~4,113~f44,f94 +ng+t~100,2~~3,102~1,109~4,120~1,123~1,125~4,106~4,113~f44,f9f +ng+n~101,2~~3,103~1,109~4,120~1,123~1,125~4,106~4,113~f44,fa3 +ng+m~102,2~~3,104~1,109~4,120~1,123~1,125~4,106~4,113~f44,fa8 +ng+y~103,2~~3,105~1,109~4,120~1,123~1,125~4,106~4,113~f44,fb1 +ng+l~104,2~~3,106~1,109~4,120~1,123~1,125~4,106~4,113~f44,fb3 +ng+sh~105,2~~3,107~1,109~4,120~1,123~1,125~4,106~4,113~f44,fb4 +ng+h~106,2~~3,108~1,109~4,120~1,123~1,125~4,106~4,113~f44,fb7 +ng+k+Sh~107,2~~3,109~1,109~4,123~1,123~1,125~4,109~4,116~f44,f90,fb5 +ng+k+Sh+w~108,2~~3,110~1,109~4,124~1,123~1,125~4,110~4,117~f44,f90,fb5,fad +ng+k+Sh+y~109,2~~3,111~1,109~4,125~1,123~1,125~4,111~4,118~f44,f90,fb5,fb1 +ts+ts~110,2~~3,112~1,110~4,120~1,125~1,126~4,106~4,113~f59,fa9 +ts+tsh~111,2~~3,113~1,110~4,120~1,125~1,126~4,106~4,113~f59,faa +ts+tsh+w~112,2~~3,114~1,110~4,122~1,125~1,126~4,108~4,115~f59,faa,fad +ts+tsh+r~113,2~~3,115~1,110~4,122~1,125~1,126~4,108~4,115~f59,faa,fb2 +ts+ny~114,2~~3,116~1,110~4,120~1,125~1,126~4,106~4,113~f59,f99 +ts+ny~115,2~~3,117~1,110~4,122~1,125~1,126~4,108~4,115~f59,fa3,fb1 +ts+m~116,2~~3,118~1,110~4,120~1,125~1,126~4,106~4,113~f59,fa8 +ts+y~117,2~~3,119~1,110~4,120~1,125~1,126~4,106~4,113~f59,fb1 +ts+r~118,2~~3,120~1,110~4,120~1,125~1,126~4,106~4,113~f59,fb2 +ts+l~119,2~~3,121~1,110~4,120~1,125~1,126~4,106~4,113~f59,fb3 +ts+h+y~120,2~~3,122~1,110~4,122~1,125~1,126~4,108~4,115~f59,fb7,fb1 +tsh+th~121,2~~3,123~1,110~4,120~1,125~1,126~4,106~4,113~f5a,fa0 +tsh+tsh~122,2~~3,124~1,110~4,120~1,125~1,126~4,106~4,113~f5a,faa +tsh+y~123,2~~3,125~1,110~4,120~1,125~1,126~4,106~4,113~f5a,fb1 +tsh+r~124,2~~3,126~1,110~4,120~1,125~1,126~4,106~4,113~f5a,fb2 +tsh+l~125,2~~4,33~1,110~4,120~1,125~1,126~4,106~4,113~f5a,fb3 +dz+dz~126,2~~4,34~1,110~4,120~1,125~1,126~4,106~4,113~f5b,fab +dz+dz+ny~253,2~~4,35~1,110~4,124~1,125~1,126~4,110~4,117~f5b,fab,f99 +dz+dz+w~128,2~~4,36~1,110~4,123~1,125~1,126~4,109~4,116~f5b,fab,fad +dz+dz+h~129,2~~4,37~1,110~4,124~1,125~1,126~4,110~4,117~f5b,fab,fb7 +dz+h+dz+h~130,2~~4,38~1,110~4,126~1,125~1,126~4,112~4,119~f5b,fb7,fab,fb7 +dz+ny~131,2~~4,39~1,110~4,120~1,125~1,126~4,106~4,113~f5b,f99 +dz+ny+y~132,2~~4,40~1,110~4,122~1,125~1,126~4,108~4,115~f5b,f99,fb1 +dz+n~133,2~~4,41~1,110~4,120~1,125~1,126~4,106~4,113~f5b,fa3 +dz+n+w~134,2~~4,42~1,110~4,122~1,125~1,126~4,108~4,115~f5b,fa3,fad +dz+m~135,2~~4,43~1,110~4,120~1,125~1,126~4,106~4,113~f5b,fa8 +dz+y~136,2~~4,44~1,110~4,120~1,125~1,126~4,106~4,113~f5b,fb1 +dz+r~137,2~~4,46~1,110~4,120~1,123~1,126~4,106~4,113~f5b,fb2 +dz+w~138,2~~4,47~1,110~4,120~1,123~1,126~4,106~4,113~f5b,fad dz+h~139,2~~4,48~1,110~4,120~1,123~1,126~4,106~4,113~0F5C -dz+h+y~140,2~~4,49~1,110~4,121~1,123~1,126~4,107~4,114 -dz+h+r~141,2~~4,50~1,110~4,121~1,123~1,126~4,107~4,114 -dz+h+l~249,2~~4,51~1,110~4,124~1,123~1,126~4,110~4,117 -dz+h+w~143,2~~4,52~1,110~4,122~1,123~1,126~4,108~4,115 -ny+ts~144,2~~4,53~1,109~4,120~1,123~1,125~4,106~4,113 -ny+ts+m~145,2~~4,54~1,109~4,124~1,123~1,125~4,110~4,117 -ny+ts+y~146,2~~4,55~1,109~4,122~1,123~1,125~4,108~4,115 -ny+tsh~147,2~~4,56~1,109~4,120~1,123~1,125~4,106~4,113 -ny+dz~148,2~~4,57~1,109~4,120~1,123~1,125~4,106~4,113 -ny+dz+y~149,2~~4,58~1,109~4,123~1,123~1,125~4,109~4,116 -ny+dz+h~150,2~~4,59~1,109~4,124~1,123~1,125~4,110~4,117 -ny+ny~151,2~~4,60~1,109~4,120~1,123~1,125~4,106~4,113 -ny+p~152,2~~4,61~1,109~4,120~1,123~1,125~4,106~4,113 -ny+ph~153,2~~4,62~1,109~4,120~1,123~1,125~4,106~4,113 -ny+y~154,2~~4,63~1,109~4,120~1,123~1,125~4,106~4,113 -ny+r~155,2~~4,64~1,109~4,120~1,123~1,125~4,106~4,113 -ny+l~156,2~~4,65~1,109~4,120~1,123~1,125~4,106~4,113 -ny+sh~157,2~~4,66~1,109~4,120~1,123~1,125~4,106~4,113 -T+k~250,2~~4,67~1,109~4,120~1,123~1,125~4,106~4,113 -T+T~159,2~~4,68~1,109~4,120~1,123~1,125~4,106~4,113 -T+T+h~254,2~~4,69~1,109~4,124~1,123~1,125~4,110~4,117 -T+n~188,4~~4,70~1,109~8,120~1,123~1,125~8,106~8,113 -T+p~161,2~~4,71~1,109~4,120~1,123~1,125~4,106~4,113 -T+m~162,2~~4,72~1,109~4,120~1,123~1,125~4,106~4,113 -T+y~163,2~~4,73~1,109~4,120~1,123~1,125~4,106~4,113 -T+w~164,2~~4,74~1,109~4,121~1,123~1,125~4,107~4,114 -T+s~165,2~~4,75~1,109~4,120~1,123~1,125~4,106~4,113 -Th+y~251,2~~4,76~1,109~4,120~1,123~1,125~4,106~4,113 -Th+r~167,2~~4,77~1,109~4,120~1,123~1,125~4,106~4,113 -D+g~168,2~~4,78~1,109~4,120~1,123~1,125~4,106~4,113 -D+g+y~169,2~~4,79~1,109~4,122~1,123~1,125~4,108~4,115 -D+g+h~170,2~~4,80~1,109~4,124~1,123~1,125~4,110~4,117 -D+g+h+r~171,2~~4,81~1,109~4,125~1,123~1,125~4,111~4,118 -D+D~172,2~~4,82~1,109~4,120~1,123~1,125~4,106~4,113 -D+D+h~173,2~~4,83~1,109~4,123~1,123~1,125~4,109~4,116 -D+D+h+y~174,2~~4,84~1,109~4,125~1,123~1,125~4,111~4,118 -D+n~175,2~~4,85~1,109~4,120~1,123~1,125~4,106~4,113 -D+m~176,2~~4,86~1,109~4,120~1,123~1,125~4,106~4,113 -D+y~177,2~~4,87~1,109~4,120~1,123~1,125~4,106~4,113 -D+r~178,2~~4,88~1,109~4,120~1,123~1,125~4,106~4,113 -D+w~179,2~~4,89~1,109~4,120~1,123~1,125~4,106~4,113 +dz+h+y~140,2~~4,49~1,110~4,121~1,123~1,126~4,107~4,114~f5c,fb1 +dz+h+r~141,2~~4,50~1,110~4,121~1,123~1,126~4,107~4,114~f5c,fb2 +dz+h+l~249,2~~4,51~1,110~4,124~1,123~1,126~4,110~4,117~f5c,fb3 +dz+h+w~143,2~~4,52~1,110~4,122~1,123~1,126~4,108~4,115~f5c,fad +ny+ts~144,2~~4,53~1,109~4,120~1,123~1,125~4,106~4,113~f49,fa9 +ny+ts+m~145,2~~4,54~1,109~4,124~1,123~1,125~4,110~4,117~f49,fa9,fa8 +ny+ts+y~146,2~~4,55~1,109~4,122~1,123~1,125~4,108~4,115~f49,fa9,fb1 +ny+tsh~147,2~~4,56~1,109~4,120~1,123~1,125~4,106~4,113~f49,faa +ny+dz~148,2~~4,57~1,109~4,120~1,123~1,125~4,106~4,113~f49,fab +ny+dz+y~149,2~~4,58~1,109~4,123~1,123~1,125~4,109~4,116~f49,fab,fb1 +ny+dz+h~150,2~~4,59~1,109~4,124~1,123~1,125~4,110~4,117~f49,fab,fb7 +ny+ny~151,2~~4,60~1,109~4,120~1,123~1,125~4,106~4,113~f49,f99 +ny+p~152,2~~4,61~1,109~4,120~1,123~1,125~4,106~4,113~f49,fa4 +ny+ph~153,2~~4,62~1,109~4,120~1,123~1,125~4,106~4,113~f49,fa5 +ny+y~154,2~~4,63~1,109~4,120~1,123~1,125~4,106~4,113~f49,fb1 +ny+r~155,2~~4,64~1,109~4,120~1,123~1,125~4,106~4,113~f49,fb2 +ny+l~156,2~~4,65~1,109~4,120~1,123~1,125~4,106~4,113~f49,fb3 +ny+sh~157,2~~4,66~1,109~4,120~1,123~1,125~4,106~4,113~f49,fb4 +T+k~250,2~~4,67~1,109~4,120~1,123~1,125~4,106~4,113~f4a,f90 +T+T~159,2~~4,68~1,109~4,120~1,123~1,125~4,106~4,113~f4a,f9a +T+T+h~254,2~~4,69~1,109~4,124~1,123~1,125~4,110~4,117~f4a,f9a,fb7 +T+n~188,4~~4,70~1,109~8,120~1,123~1,125~8,106~8,113~f4a,fa3 +T+p~161,2~~4,71~1,109~4,120~1,123~1,125~4,106~4,113~f4a,fa4 +T+m~162,2~~4,72~1,109~4,120~1,123~1,125~4,106~4,113~f4a,fa8 +T+y~163,2~~4,73~1,109~4,120~1,123~1,125~4,106~4,113~f4a,fb1 +T+w~164,2~~4,74~1,109~4,121~1,123~1,125~4,107~4,114~f4a,fad +T+s~165,2~~4,75~1,109~4,120~1,123~1,125~4,106~4,113~f4a,fb6 +Th+y~251,2~~4,76~1,109~4,120~1,123~1,125~4,106~4,113~f4b,fb1 +Th+r~167,2~~4,77~1,109~4,120~1,123~1,125~4,106~4,113~f4b,fb2 +D+g~168,2~~4,78~1,109~4,120~1,123~1,125~4,106~4,113~f4c,f92 +D+g+y~169,2~~4,79~1,109~4,122~1,123~1,125~4,108~4,115~f4c,f92,fb1 +D+g+h~170,2~~4,80~1,109~4,124~1,123~1,125~4,110~4,117~f4c,f92,fb7 +D+g+h+r~171,2~~4,81~1,109~4,125~1,123~1,125~4,111~4,118~f4c,f92,fb7,fb2 +D+D~172,2~~4,82~1,109~4,120~1,123~1,125~4,106~4,113~f4c,f9c +D+D+h~173,2~~4,83~1,109~4,123~1,123~1,125~4,109~4,116~f4c,f9c,fb7 +D+D+h+y~174,2~~4,84~1,109~4,125~1,123~1,125~4,111~4,118~f4c,f9c,fb7,fb1 +D+n~175,2~~4,85~1,109~4,120~1,123~1,125~4,106~4,113~f4c,fa3 +D+m~176,2~~4,86~1,109~4,120~1,123~1,125~4,106~4,113~f4c,fa8 +D+y~177,2~~4,87~1,109~4,120~1,123~1,125~4,106~4,113~f4c,fb1 +D+r~178,2~~4,88~1,109~4,120~1,123~1,125~4,106~4,113~f4c,fb2 +D+w~179,2~~4,89~1,109~4,120~1,123~1,125~4,106~4,113~f4c,fad D+h~180,2~~4,90~1,109~4,120~1,123~1,125~4,106~4,113~0F4D -D+h+D+h~181,2~~4,91~1,109~4,126~1,123~1,125~4,112~4,119 -D+h+m~182,2~~4,92~1,109~4,124~1,123~1,125~4,110~4,117 -D+h+y~183,2~~4,93~1,109~4,121~1,123~1,125~4,107~4,114 -D+h+r~184,2~~4,94~1,109~4,121~1,123~1,125~4,107~4,114 -D+h+w~185,2~~4,95~1,109~4,121~1,123~1,125~4,107~4,114 -N+T~186,2~~4,96~1,109~4,120~1,123~1,125~4,106~4,113 -N+Th~187,2~~4,97~1,109~4,120~1,123~1,125~4,106~4,113 -N+D~188,2~~4,98~1,109~4,120~1,123~1,125~4,106~4,113 -N+D+y~189,2~~4,99~1,109~4,123~1,123~1,125~4,109~4,116 -N+D+r~193,4~~4,100~1,109~8,121~1,123~1,125~8,107~8,114 -N+D+r+y~190,2~~4,101~1,109~4,125~1,123~1,125~4,111~4,118 -N+D+h~191,2~~4,102~1,109~4,123~1,123~1,125~4,109~4,116 -N+N~192,2~~4,103~1,109~4,120~1,123~1,125~4,106~4,113 -N+d+r~193,2~~4,104~1,109~4,122~1,123~1,125~4,108~4,115 -N+m~194,2~~4,105~1,109~4,120~1,123~1,125~4,106~4,113 -N+y~195,2~~5,33~1,109~4,120~1,123~1,125~4,106~4,113 -N+w~196,2~~5,34~1,109~4,120~1,123~1,125~4,106~4,113 -t+k~197,2~~5,35~1,109~4,120~1,123~1,125~4,106~4,113 -t+k+r~198,2~~5,36~1,109~4,121~1,123~1,125~4,107~4,114 -t+k+w~33,3~~5,37~1,109~6,122~1,123~1,125~6,108~6,115 -t+k+s~199,2~~5,38~1,109~4,123~1,123~1,125~4,109~4,116 -t+g~189,4~~5,39~1,109~8,120~1,123~1,125~8,106~8,113 -t+ny~34,3~~5,40~1,109~6,120~1,123~1,125~6,106~6,113 -t+Th~35,3~~5,41~1,109~6,120~1,123~1,125~6,106~6,113 -t+t~36,3~~5,42~1,109~6,120~1,123~1,125~6,106~6,113 -t+t+y~37,3~~5,43~1,109~6,122~1,123~1,125~6,108~6,115 -t+t+r~38,3~~5,44~1,109~6,121~1,123~1,125~6,107~6,114 -t+t+w~39,3~~5,46~1,109~6,121~1,123~1,125~6,107~6,114 -t+th~40,3~~5,47~1,109~6,120~1,123~1,125~6,106~6,113 -t+th+y~41,3~~5,48~1,109~6,122~1,123~1,125~6,108~6,115 -t+n~42,3~~5,49~1,109~6,120~1,123~1,125~6,106~6,113 -t+n+y~43,3~~5,50~1,109~6,122~1,123~1,125~6,108~6,115 -t+p~44,3~~5,51~1,109~6,120~1,123~1,125~6,106~6,113 -t+p+r~252,3~~5,52~1,109~6,122~1,123~1,125~6,108~6,115 -t+ph~46,3~~5,53~1,109~6,120~1,123~1,125~6,106~6,113 -t+m~47,3~~5,54~1,109~6,120~1,123~1,125~6,106~6,113 -t+m+y~48,3~~5,55~1,109~6,122~1,123~1,125~6,108~6,115 -t+y~49,3~~5,56~1,109~6,120~1,123~1,125~6,106~6,113 -t+rn~50,3~~5,57~1,110~6,121~1,125~1,125~6,107~6,114 -t+s~51,3~~5,58~1,110~6,120~1,125~1,125~6,106~6,113 -t+s+th~52,3~~5,59~1,110~6,124~1,125~1,125~6,110~6,117 -t+s+n~53,3~~5,60~1,109~6,124~1,123~1,125~6,110~6,117 -t+s+n+y~54,3~~5,61~1,109~6,125~1,123~1,125~6,111~6,118 -t+s+m~55,3~~5,62~1,109~6,124~1,123~1,125~6,110~6,117 -t+s+m+y~56,3~~5,63~1,109~6,125~1,123~1,125~6,111~6,118 -t+s+y~57,3~~5,64~1,109~6,122~1,123~1,125~6,108~6,115 -t+s+r~58,3~~5,65~1,109~6,122~1,123~1,125~6,108~6,115 -t+s+w~59,3~~5,66~1,109~6,122~1,123~1,125~6,108~6,115 -t+r+y~60,3~~5,67~1,109~6,121~1,123~1,125~6,107~6,114 -t+w+y~61,3~~5,68~1,109~6,122~1,123~1,125~6,108~6,115 -t+k+Sh~62,3~~5,69~1,109~6,123~1,123~1,125~6,109~6,116 -th+y~63,3~~5,70~1,109~6,120~1,123~1,125~6,106~6,113 -th+w~64,3~~5,71~1,109~6,120~1,123~1,125~6,106~6,113 -d+g~65,3~~5,72~1,109~6,120~1,123~1,125~6,106~6,113 -d+g+y~66,3~~5,73~1,109~6,122~1,123~1,125~6,108~6,115 -d+g+r~67,3~~5,74~1,109~6,122~1,123~1,125~6,108~6,115 -d+g+h~68,3~~5,75~1,109~6,124~1,123~1,125~6,110~6,117 -d+g+h+r~69,3~~5,76~1,109~6,125~1,123~1,125~6,111~6,118 -d+dz~70,3~~5,77~1,109~6,120~1,123~1,125~6,106~6,113 -d+d~71,3~~5,78~1,109~6,120~1,123~1,125~6,106~6,113 -d+d+y~72,3~~5,79~1,109~6,122~1,123~1,125~6,108~6,115 -d+d+r~73,3~~5,80~1,109~6,122~1,123~1,125~6,108~6,115 -d+d+w~74,3~~5,81~1,109~6,122~1,123~1,125~6,108~6,115 -d+d+h~75,3~~5,82~1,109~6,123~1,123~1,125~6,109~6,116 -d+d+h+n~76,3~~5,83~1,109~6,126~1,123~1,125~6,112~6,119 -d+d+h+y~77,3~~5,84~1,109~6,125~1,123~1,125~6,111~6,118 -d+d+h+r~78,3~~5,85~1,109~6,125~1,123~1,125~6,111~6,118 -d+d+h+r+w~79,3~~5,86~1,109~6,125~1,123~1,125~6,111~6,118 -d+n~80,3~~5,87~1,109~6,120~1,123~1,125~6,106~6,113 -d+b~81,3~~5,88~1,109~6,120~1,123~1,125~6,106~6,113 -d+b+r~82,3~~5,89~1,109~6,121~1,123~1,125~6,107~6,114 -d+b+h~83,3~~5,90~1,109~6,124~1,123~1,125~6,110~6,117 -d+b+h+y~84,3~~5,91~1,109~6,125~1,123~1,125~6,111~6,118 -d+b+h+r~85,3~~5,92~1,109~6,125~1,123~1,125~6,111~6,118 -d+m~86,3~~5,93~1,109~6,120~1,123~1,125~6,106~6,113 -d+y~87,3~~5,94~1,109~6,120~1,123~1,125~6,106~6,113 -d+r+y~88,3~~5,95~1,109~6,121~1,123~1,125~6,107~6,114 -d+w+y~89,3~~5,96~1,109~6,122~1,123~1,125~6,108~6,115 -d+h~90,3~~5,97~1,109~6,120~1,123~1,125~6,106~6,113~0F4D -d+h+n~91,3~~5,98~1,109~6,124~1,123~1,125~6,110~6,117 -d+h+n+y~92,3~~5,99~1,109~6,125~1,123~1,125~6,111~6,118 -d+h+m~93,3~~5,100~1,109~6,124~1,123~1,125~6,110~6,117 -d+h+y~94,3~~5,101~1,109~6,122~1,123~1,125~6,108~6,115 -d+h+r~95,3~~5,102~1,109~6,121~1,123~1,125~6,107~6,114 -d+h+r+y~96,3~~5,103~1,109~6,123~1,123~1,125~6,109~6,116 -d+h+w~97,3~~5,104~1,109~6,121~1,123~1,125~6,107~6,114 -n+k~98,3~~5,105~1,109~6,120~1,123~1,125~6,106~6,113 -n+k+t~99,3~~5,106~1,109~6,124~1,123~1,125~6,110~6,117 -n+g+h~101,3~~5,107~1,109~6,124~1,123~1,125~6,110~6,117 -n+ng~102,3~~5,108~1,109~6,120~1,123~1,125~6,106~6,113 -n+dz~103,3~~5,109~1,109~6,120~1,123~1,125~6,106~6,113 -n+dz+y~104,3~~5,110~1,109~6,123~1,123~1,125~6,109~6,116 -n+D~105,3~~5,111~1,109~6,120~1,123~1,125~6,106~6,113 -n+t~106,3~~5,112~1,109~6,120~1,123~1,125~6,106~6,113 -n+t+y~107,3~~5,113~1,109~6,122~1,123~1,125~6,108~6,115 -n+t+r~108,3~~5,114~1,109~6,121~1,123~1,125~6,107~6,114 -n+t+r+y~109,3~~5,115~1,109~6,123~1,123~1,125~6,109~6,116 -n+t+w~110,3~~5,116~1,109~6,121~1,123~1,125~6,107~6,114 -n+t+s~111,3~~5,117~1,109~6,123~1,123~1,125~6,109~6,116 -n+th~112,3~~5,118~1,109~6,120~1,123~1,125~6,106~6,113 -n+d~113,3~~5,119~1,109~6,120~1,123~1,125~6,106~6,113 -n+d+d~114,3~~5,120~1,109~6,124~1,123~1,125~6,110~6,117 -n+d+d+r~115,3~~5,121~1,109~6,125~1,123~1,125~6,111~6,118 -n+d+y~116,3~~5,122~1,109~6,122~1,123~1,125~6,108~6,115 -n+d+r~117,3~~5,123~1,109~6,122~1,123~1,125~6,108~6,115 -n+d+h~118,3~~5,124~1,109~6,124~1,123~1,125~6,110~6,117 -n+d+h+r~119,3~~5,125~1,109~6,125~1,123~1,125~6,111~6,118 -n+d+h+y~120,3~~5,126~1,109~6,125~1,123~1,125~6,111~6,118 -n+n~121,3~~6,33~1,109~6,120~1,123~1,125~6,106~6,113 -n+n+y~123,3~~6,34~1,109~6,122~1,123~1,125~6,108~6,115 -n+p~124,3~~6,35~1,109~6,120~1,123~1,125~6,106~6,113 -n+p+r~125,3~~6,36~1,109~6,121~1,123~1,125~6,107~6,114 -n+ph~126,3~~6,37~1,109~6,120~1,123~1,125~6,106~6,113 -n+m~253,3~~6,38~1,109~6,120~1,123~1,125~6,106~6,113 -n+b+h+y~128,3~~6,39~1,109~6,125~1,123~1,125~6,111~6,118 -n+ts~129,3~~6,40~1,109~6,120~1,123~1,125~6,106~6,113 -n+y~130,3~~6,41~1,109~6,120~1,123~1,125~6,106~6,113 -n+r~131,3~~6,42~1,109~6,120~1,123~1,125~6,106~6,113 -n+w~132,3~~6,43~1,109~6,120~1,123~1,125~6,106~6,113 -n+w+y~133,3~~6,44~1,109~6,121~1,123~1,125~6,107~6,114 -n+s~134,3~~6,46~1,109~6,120~1,123~1,125~6,106~6,113 -n+s+y~135,3~~6,47~1,109~6,122~1,123~1,125~6,108~6,115 -n+h~136,3~~6,48~1,109~6,120~1,123~1,125~6,106~6,113 -n+h+r~137,3~~6,49~1,109~6,121~1,123~1,125~6,107~6,114 -p+t~138,3~~6,50~1,109~6,120~1,123~1,125~6,106~6,113 -p+t+y~139,3~~6,51~1,109~6,122~1,123~1,125~6,108~6,115 -p+t+r+y~140,3~~6,52~1,109~6,123~1,123~1,125~6,109~6,116 -p+d~190,4~~6,53~1,109~8,120~1,123~1,125~8,106~8,113 -p+n~141,3~~6,54~1,109~6,120~1,123~1,125~6,106~6,113 -p+n+y~249,3~~6,55~1,109~6,122~1,123~1,125~6,108~6,115 -p+p~143,3~~6,56~1,109~6,120~1,123~1,125~6,106~6,113 -p+m~144,3~~6,57~1,109~6,120~1,123~1,125~6,106~6,113 -p+l~145,3~~6,58~1,109~6,120~1,123~1,125~6,106~6,113 -p+w~146,3~~6,59~1,109~6,120~1,123~1,125~6,106~6,113 -p+s~147,3~~6,60~1,109~6,120~1,123~1,125~6,106~6,113 -p+s+n+y~148,3~~6,61~1,109~6,125~1,123~1,125~6,111~6,118 -p+s+w~149,3~~6,62~1,109~6,122~1,123~1,125~6,108~6,115 -p+s+y~150,3~~6,63~1,109~6,122~1,123~1,125~6,108~6,115 -b+g+h~151,3~~6,64~1,109~6,124~1,123~1,125~6,110~6,117 -b+dz~152,3~~6,65~1,109~6,120~1,123~1,125~6,106~6,113 -b+d~153,3~~6,66~1,109~6,120~1,123~1,125~6,106~6,113 -b+d+dz~154,3~~6,67~1,109~6,124~1,123~1,125~6,110~6,117 -b+d+h~155,3~~6,68~1,109~6,124~1,123~1,125~6,110~6,117 -b+d+h+w~156,3~~6,69~1,109~6,125~1,123~1,125~6,111~6,118 -b+t~157,3~~6,70~1,109~6,120~1,123~1,125~6,106~6,113 -b+n~250,3~~6,71~1,109~6,120~1,123~1,125~6,106~6,113 -b+b~159,3~~6,72~1,109~6,120~1,123~1,125~6,106~6,113 -b+b+h~254,3~~6,73~1,109~6,124~1,123~1,125~6,110~6,117 -b+b+h+y~161,3~~6,74~1,109~6,125~1,123~1,125~6,111~6,118 -b+m~162,3~~6,75~1,109~6,120~1,123~1,125~6,106~6,113 +D+h+D+h~181,2~~4,91~1,109~4,126~1,123~1,125~4,112~4,119~f4d,f9d +D+h+m~182,2~~4,92~1,109~4,124~1,123~1,125~4,110~4,117~f4d,fa8 +D+h+y~183,2~~4,93~1,109~4,121~1,123~1,125~4,107~4,114~f4d,fb1 +D+h+r~184,2~~4,94~1,109~4,121~1,123~1,125~4,107~4,114~f4d,fb2 +D+h+w~185,2~~4,95~1,109~4,121~1,123~1,125~4,107~4,114~f4d,fad +N+T~186,2~~4,96~1,109~4,120~1,123~1,125~4,106~4,113~f4e,f9a +N+Th~187,2~~4,97~1,109~4,120~1,123~1,125~4,106~4,113~f4e,f9b +N+D~188,2~~4,98~1,109~4,120~1,123~1,125~4,106~4,113~f4e,f9c +N+D+y~189,2~~4,99~1,109~4,123~1,123~1,125~4,109~4,116~f4e,f9c,fbb +N+D+r~193,4~~4,100~1,109~8,121~1,123~1,125~8,107~8,114~f4e,f9c,fb2 +N+D+r+y~190,2~~4,101~1,109~4,125~1,123~1,125~4,111~4,118~f4e,f9c,fbc,fb1 +N+D+h~191,2~~4,102~1,109~4,123~1,123~1,125~4,109~4,116~f4e,f9c,fb7 +N+N~192,2~~4,103~1,109~4,120~1,123~1,125~4,106~4,113~f4e,f9e +N+d+r~193,2~~4,104~1,109~4,122~1,123~1,125~4,108~4,115~f4e,fa1,fb2 +N+m~194,2~~4,105~1,109~4,120~1,123~1,125~4,106~4,113~f4e,fa8 +N+y~195,2~~5,33~1,109~4,120~1,123~1,125~4,106~4,113~f4e,fb1 +N+w~196,2~~5,34~1,109~4,120~1,123~1,125~4,106~4,113~f4e,fad +t+k~197,2~~5,35~1,109~4,120~1,123~1,125~4,106~4,113~f4f,f90 +t+k+r~198,2~~5,36~1,109~4,121~1,123~1,125~4,107~4,114~f4f,f90,fb2 +t+k+w~33,3~~5,37~1,109~6,122~1,123~1,125~6,108~6,115~f4f,f90,fad +t+k+s~199,2~~5,38~1,109~4,123~1,123~1,125~4,109~4,116~f4f,f90,fb6 +t+g~189,4~~5,39~1,109~8,120~1,123~1,125~8,106~8,113~f4f,f92 +t+ny~34,3~~5,40~1,109~6,120~1,123~1,125~6,106~6,113~f4f,f99 +t+Th~35,3~~5,41~1,109~6,120~1,123~1,125~6,106~6,113~f4f,f9b +t+t~36,3~~5,42~1,109~6,120~1,123~1,125~6,106~6,113~f4f,f9f +t+t+y~37,3~~5,43~1,109~6,122~1,123~1,125~6,108~6,115~f4f,f9f,fb1 +t+t+r~38,3~~5,44~1,109~6,121~1,123~1,125~6,107~6,114~f4f,f9f,fb2 +t+t+w~39,3~~5,46~1,109~6,121~1,123~1,125~6,107~6,114~f4f,f9f,fad +t+th~40,3~~5,47~1,109~6,120~1,123~1,125~6,106~6,113~f4f,fa0 +t+th+y~41,3~~5,48~1,109~6,122~1,123~1,125~6,108~6,115~f4f,fa0,fb1 +t+n~42,3~~5,49~1,109~6,120~1,123~1,125~6,106~6,113~f4f,fa3 +t+n+y~43,3~~5,50~1,109~6,122~1,123~1,125~6,108~6,115~f4f,fa3,fb1 +t+p~44,3~~5,51~1,109~6,120~1,123~1,125~6,106~6,113~f4f,fa4 +t+p+r~252,3~~5,52~1,109~6,122~1,123~1,125~6,108~6,115~f4f,fa4,fb2 +t+ph~46,3~~5,53~1,109~6,120~1,123~1,125~6,106~6,113~f4f,fa5 +t+m~47,3~~5,54~1,109~6,120~1,123~1,125~6,106~6,113~f4f,fa8 +t+m+y~48,3~~5,55~1,109~6,122~1,123~1,125~6,108~6,115~f4f,fa8,fb1 +t+y~49,3~~5,56~1,109~6,120~1,123~1,125~6,106~6,113~f4f,fb1 +t+rn~50,3~~5,57~1,110~6,121~1,125~1,125~6,107~6,114~f4f,fb2,fa3 +t+s~51,3~~5,58~1,110~6,120~1,125~1,125~6,106~6,113~f4f,fb6 +t+s+th~52,3~~5,59~1,110~6,124~1,125~1,125~6,110~6,117~f4f,fb6,fa0 +t+s+n~53,3~~5,60~1,109~6,124~1,123~1,125~6,110~6,117~f4f,fb6,fa3 +t+s+n+y~54,3~~5,61~1,109~6,125~1,123~1,125~6,111~6,118~f4f,fb6,fa3,fb1 +t+s+m~55,3~~5,62~1,109~6,124~1,123~1,125~6,110~6,117~f4f,fb6,fa8 +t+s+m+y~56,3~~5,63~1,109~6,125~1,123~1,125~6,111~6,118~f4f,fb6,fa8,fb1 +t+s+y~57,3~~5,64~1,109~6,122~1,123~1,125~6,108~6,115~f4f,fb6,fb1 +t+s+r~58,3~~5,65~1,109~6,122~1,123~1,125~6,108~6,115~f4f,fb6,fb2 +t+s+w~59,3~~5,66~1,109~6,122~1,123~1,125~6,108~6,115~f4f,fb6,fad +t+r+y~60,3~~5,67~1,109~6,121~1,123~1,125~6,107~6,114~f4f,fb2,fb1 +t+w+y~61,3~~5,68~1,109~6,122~1,123~1,125~6,108~6,115~f4f,fad,fb1 +t+k+Sh~62,3~~5,69~1,109~6,123~1,123~1,125~6,109~6,116~f4f,fb9 +th+y~63,3~~5,70~1,109~6,120~1,123~1,125~6,106~6,113~f50,fb1 +th+w~64,3~~5,71~1,109~6,120~1,123~1,125~6,106~6,113~f50,fad +d+g~65,3~~5,72~1,109~6,120~1,123~1,125~6,106~6,113~f51,f92 +d+g+y~66,3~~5,73~1,109~6,122~1,123~1,125~6,108~6,115~f51,f92,fb1 +d+g+r~67,3~~5,74~1,109~6,122~1,123~1,125~6,108~6,115~f51,f92,fb2 +d+g+h~68,3~~5,75~1,109~6,124~1,123~1,125~6,110~6,117~f51,f92,fb7 +d+g+h+r~69,3~~5,76~1,109~6,125~1,123~1,125~6,111~6,118~f51,f92,fb7,fb2 +d+dz~70,3~~5,77~1,109~6,120~1,123~1,125~6,106~6,113~f51,fab +d+d~71,3~~5,78~1,109~6,120~1,123~1,125~6,106~6,113~f51,fa1 +d+d+y~72,3~~5,79~1,109~6,122~1,123~1,125~6,108~6,115~f51,fa1,fb1 +d+d+r~73,3~~5,80~1,109~6,122~1,123~1,125~6,108~6,115~f51,fa1,fb2 +d+d+w~74,3~~5,81~1,109~6,122~1,123~1,125~6,108~6,115~f51,fa1,fad +d+d+h~75,3~~5,82~1,109~6,123~1,123~1,125~6,109~6,116~f51,fa1,fb7 +d+d+h+n~76,3~~5,83~1,109~6,126~1,123~1,125~6,112~6,119~f51,fa1,fb7,fa3 +d+d+h+y~77,3~~5,84~1,109~6,125~1,123~1,125~6,111~6,118~f51,fa1,fb7,fb1 +d+d+h+r~78,3~~5,85~1,109~6,125~1,123~1,125~6,111~6,118~f51,fa1,fb7,fb2 +d+d+h+w~79,3~~5,86~1,109~6,125~1,123~1,125~6,111~6,118~f51,fa1,fb7,fad +d+n~80,3~~5,87~1,109~6,120~1,123~1,125~6,106~6,113~f51,fa3 +d+b~81,3~~5,88~1,109~6,120~1,123~1,125~6,106~6,113~f51,fa6 +d+b+r~82,3~~5,89~1,109~6,121~1,123~1,125~6,107~6,114~f51,fa6,fb2 +d+b+h~83,3~~5,90~1,109~6,124~1,123~1,125~6,110~6,117~f51,fa6,fb7 +d+b+h+y~84,3~~5,91~1,109~6,125~1,123~1,125~6,111~6,118~f51,fa6,fb7,fb1 +d+b+h+r~85,3~~5,92~1,109~6,125~1,123~1,125~6,111~6,118~f51,fa6,fb7,fb2 +d+m~86,3~~5,93~1,109~6,120~1,123~1,125~6,106~6,113~f51,fa8 +d+y~87,3~~5,94~1,109~6,120~1,123~1,125~6,106~6,113~f51,fb1 +d+r+y~88,3~~5,95~1,109~6,121~1,123~1,125~6,107~6,114~f51,fb2,fb1 +d+w+y~89,3~~5,96~1,109~6,122~1,123~1,125~6,108~6,115~f51,fad,fb1 +d+h~90,3~~5,97~1,109~6,120~1,123~1,125~6,106~6,113~0F52 +d+h+n~91,3~~5,98~1,109~6,124~1,123~1,125~6,110~6,117~f52,fa3 +d+h+n+y~92,3~~5,99~1,109~6,125~1,123~1,125~6,111~6,118~f52,fa3,fb1 +d+h+m~93,3~~5,100~1,109~6,124~1,123~1,125~6,110~6,117~f52,fa8 +d+h+y~94,3~~5,101~1,109~6,122~1,123~1,125~6,108~6,115~f52,fb1 +d+h+r~95,3~~5,102~1,109~6,121~1,123~1,125~6,107~6,114~f52,fb2 +d+h+r+y~96,3~~5,103~1,109~6,123~1,123~1,125~6,109~6,116~f52,fb2,fb1 +d+h+w~97,3~~5,104~1,109~6,121~1,123~1,125~6,107~6,114~f52,fad +n+k~98,3~~5,105~1,109~6,120~1,123~1,125~6,106~6,113~f53,f90 +n+k+t~99,3~~5,106~1,109~6,124~1,123~1,125~6,110~6,117~f53,f90,f9f +n+g+h~101,3~~5,107~1,109~6,124~1,123~1,125~6,110~6,117~f53,f92,fb7 +n+ng~102,3~~5,108~1,109~6,120~1,123~1,125~6,106~6,113~f53,f94 +n+dz~103,3~~5,109~1,109~6,120~1,123~1,125~6,106~6,113~f53,fab +n+dz+y~104,3~~5,110~1,109~6,123~1,123~1,125~6,109~6,116~f53,fab,fb1 +n+D~105,3~~5,111~1,109~6,120~1,123~1,125~6,106~6,113~f53,f9c +n+t~106,3~~5,112~1,109~6,120~1,123~1,125~6,106~6,113~f53,f9f +n+t+y~107,3~~5,113~1,109~6,122~1,123~1,125~6,108~6,115~f53,f9f,fb1 +n+t+r~108,3~~5,114~1,109~6,121~1,123~1,125~6,107~6,114~f53,f9f,fb2 +n+t+r+y~109,3~~5,115~1,109~6,123~1,123~1,125~6,109~6,116~f53,f9f,fb2,fb1 +n+t+w~110,3~~5,116~1,109~6,121~1,123~1,125~6,107~6,114~f53,f9f,fad +n+t+s~111,3~~5,117~1,109~6,123~1,123~1,125~6,109~6,116~f53,f9f,fb6 +n+th~112,3~~5,118~1,109~6,120~1,123~1,125~6,106~6,113~f53,fa0 +n+d~113,3~~5,119~1,109~6,120~1,123~1,125~6,106~6,113~f53,fa1 +n+d+d~114,3~~5,120~1,109~6,124~1,123~1,125~6,110~6,117~f53,fa1,fa1 +n+d+d+r~115,3~~5,121~1,109~6,125~1,123~1,125~6,111~6,118~f53,fa1,fa1,fb2 +n+d+y~116,3~~5,122~1,109~6,122~1,123~1,125~6,108~6,115~f53,fa1,fb1 +n+d+r~117,3~~5,123~1,109~6,122~1,123~1,125~6,108~6,115~f53,fa1,fb2 +n+d+h~118,3~~5,124~1,109~6,124~1,123~1,125~6,110~6,117~f53,fa1,fb7 +n+d+h+r~119,3~~5,125~1,109~6,125~1,123~1,125~6,111~6,118~f53,fa1,fb7,fb2 +n+d+h+y~120,3~~5,126~1,109~6,125~1,123~1,125~6,111~6,118~f53,fa1,fb7,fb1 +n+n~121,3~~6,33~1,109~6,120~1,123~1,125~6,106~6,113~f53,fa3 +n+n+y~123,3~~6,34~1,109~6,122~1,123~1,125~6,108~6,115~f53,fa3,f61 +n+p~124,3~~6,35~1,109~6,120~1,123~1,125~6,106~6,113~f53,fa4 +n+p+r~125,3~~6,36~1,109~6,121~1,123~1,125~6,107~6,114~f53,fa4,fb2 +n+ph~126,3~~6,37~1,109~6,120~1,123~1,125~6,106~6,113~f53,fa5 +n+m~253,3~~6,38~1,109~6,120~1,123~1,125~6,106~6,113~f53,fa8 +n+b+h+y~128,3~~6,39~1,109~6,125~1,123~1,125~6,111~6,118~f53,fa6,fb7,fb1 +n+ts~129,3~~6,40~1,109~6,120~1,123~1,125~6,106~6,113~f53,fa9 +n+y~130,3~~6,41~1,109~6,120~1,123~1,125~6,106~6,113~f53,fb1 +n+r~131,3~~6,42~1,109~6,120~1,123~1,125~6,106~6,113~f53,fb2 +n+w~132,3~~6,43~1,109~6,120~1,123~1,125~6,106~6,113~f53,fad +n+w+y~133,3~~6,44~1,109~6,121~1,123~1,125~6,107~6,114~f53,fad,fb1 +n+s~134,3~~6,46~1,109~6,120~1,123~1,125~6,106~6,113~f53,fb6 +n+s+y~135,3~~6,47~1,109~6,122~1,123~1,125~6,108~6,115~f53,fb6,fb1 +n+h~136,3~~6,48~1,109~6,120~1,123~1,125~6,106~6,113~f53,fb7 +n+h+r~137,3~~6,49~1,109~6,121~1,123~1,125~6,107~6,114~f53,fb7,fb2 +p+t~138,3~~6,50~1,109~6,120~1,123~1,125~6,106~6,113~f54,f9f +p+t+y~139,3~~6,51~1,109~6,122~1,123~1,125~6,108~6,115~f54,f9f,fb1 +p+t+r+y~140,3~~6,52~1,109~6,123~1,123~1,125~6,109~6,116~f54,f9f,fb2,fb1 +p+d~190,4~~6,53~1,109~8,120~1,123~1,125~8,106~8,113~f54,fa1 +p+n~141,3~~6,54~1,109~6,120~1,123~1,125~6,106~6,113~f54,fa3 +p+n+y~249,3~~6,55~1,109~6,122~1,123~1,125~6,108~6,115~f54,fa3,fb1 +p+p~143,3~~6,56~1,109~6,120~1,123~1,125~6,106~6,113~f54,fa4 +p+m~144,3~~6,57~1,109~6,120~1,123~1,125~6,106~6,113~f54,fa8 +p+l~145,3~~6,58~1,109~6,120~1,123~1,125~6,106~6,113~f54,fb3 +p+w~146,3~~6,59~1,109~6,120~1,123~1,125~6,106~6,113~f54,fad +p+s~147,3~~6,60~1,109~6,120~1,123~1,125~6,106~6,113~f54,fb6 +p+s+n+y~148,3~~6,61~1,109~6,125~1,123~1,125~6,111~6,118~f54,fb6,fa3,fb1 +p+s+w~149,3~~6,62~1,109~6,122~1,123~1,125~6,108~6,115~f54,fb6,fad +p+s+y~150,3~~6,63~1,109~6,122~1,123~1,125~6,108~6,115~f54,fb6,fb1 +b+g+h~151,3~~6,64~1,109~6,124~1,123~1,125~6,110~6,117~f56,f92,fb7 +b+dz~152,3~~6,65~1,109~6,120~1,123~1,125~6,106~6,113~f56,fab +b+d~153,3~~6,66~1,109~6,120~1,123~1,125~6,106~6,113~f56,fa1 +b+d+dz~154,3~~6,67~1,109~6,124~1,123~1,125~6,110~6,117~f56,fa1,fab +b+d+h~155,3~~6,68~1,109~6,124~1,123~1,125~6,110~6,117~f56,fa1,fb7 +b+d+h+w~156,3~~6,69~1,109~6,125~1,123~1,125~6,111~6,118~f56,fa1,fb7,fad +b+t~157,3~~6,70~1,109~6,120~1,123~1,125~6,106~6,113~f56,f9f +b+n~250,3~~6,71~1,109~6,120~1,123~1,125~6,106~6,113~f56,fa3 +b+b~159,3~~6,72~1,109~6,120~1,123~1,125~6,106~6,113~f56,fa6 +b+b+h~254,3~~6,73~1,109~6,124~1,123~1,125~6,110~6,117~f56,fa6,fb7 +b+b+h+y~161,3~~6,74~1,109~6,125~1,123~1,125~6,111~6,118~f56,fa6,fb7,fb1 +b+m~162,3~~6,75~1,109~6,120~1,123~1,125~6,106~6,113~f56,fa8 b+h~163,3~~6,76~1,109~6,120~1,123~1,125~6,106~6,113~0F57 -b+h+N~164,3~~6,77~1,109~6,124~1,123~1,125~6,110~6,117 -b+h+n~165,3~~6,78~1,109~6,124~1,123~1,125~6,110~6,117 -b+h+m~251,3~~6,79~1,109~6,124~1,123~1,125~6,110~6,117 -b+h+y~167,3~~6,80~1,109~6,122~1,123~1,125~6,108~6,115 -b+h+r~168,3~~6,81~1,109~6,121~1,123~1,125~6,107~6,114 -b+h+w~169,3~~6,82~1,109~6,122~1,123~1,125~6,108~6,115 -m+ny~170,3~~6,83~1,109~6,121~1,123~1,125~6,107~6,114 -m+N~171,3~~6,84~1,109~6,120~1,123~1,125~6,106~6,113 -m+n~172,3~~6,85~1,109~6,120~1,123~1,125~6,106~6,113 -m+n+y~173,3~~6,86~1,109~6,122~1,123~1,125~6,108~6,115 -m+p~174,3~~6,87~1,109~6,120~1,123~1,125~6,106~6,113 -m+p+r~175,3~~6,88~1,109~6,122~1,123~1,125~6,108~6,115 -m+ph~176,3~~6,89~1,109~6,120~1,123~1,125~6,106~6,113 -m+b~177,3~~6,90~1,109~6,120~1,123~1,125~6,106~6,113 -m+b+h~178,3~~6,91~1,109~6,124~1,123~1,125~6,110~6,117 -m+b+h+y~179,3~~6,92~1,109~6,125~1,123~1,125~6,111~6,118 -m+m~180,3~~6,93~1,109~6,120~1,123~1,125~6,106~6,113 -m+l~181,3~~6,94~1,109~6,120~1,123~1,125~6,106~6,113 -m+w~182,3~~6,95~1,109~6,120~1,123~1,125~6,106~6,113 -m+s~183,3~~6,96~1,109~6,120~1,123~1,125~6,106~6,113 -m+h~184,3~~6,97~1,109~6,120~1,123~1,125~6,106~6,113 -y+y~185,3~~6,98~1,109~6,120~1,123~1,125~6,106~6,113 -y+r~186,3~~6,99~1,109~6,120~1,123~1,125~6,106~6,113 -y+w~187,3~~6,100~1,109~6,120~1,123~1,125~6,106~6,113 -y+s~188,3~~6,101~1,109~6,120~1,123~1,125~6,106~6,113 -r+kh~189,3~~6,102~1,109~6,120~1,123~1,125~6,106~6,113 -r+g+h~190,3~~6,103~1,109~6,121~1,123~1,125~6,107~6,114 -r+g+h+y~191,3~~6,104~1,109~6,123~1,123~1,125~6,109~6,116 -r+ts+y~192,3~~6,105~1,109~6,121~1,123~1,125~6,107~6,114 -r+tsh~193,3~~7,33~1,109~6,120~1,123~1,125~6,106~6,113 -r+dz+ny~194,3~~7,34~1,109~6,122~1,123~1,125~6,108~6,115 -r+dz+y~195,3~~7,35~1,109~6,121~1,123~1,125~6,107~6,114 -r+T~196,3~~7,36~1,109~6,120~1,123~1,125~6,106~6,113 -r+Th~197,3~~7,37~1,109~6,120~1,123~1,125~6,106~6,113 -r+D~198,3~~7,38~1,109~6,120~1,123~1,125~6,106~6,113 -r+N~199,3~~7,39~1,109~6,120~1,123~1,125~6,106~6,113 -r+t+w~33,4~~7,40~1,109~8,121~1,123~1,125~8,107~8,114 -r+t+t~34,4~~7,41~1,109~8,122~1,123~1,125~8,108~8,115 -r+t+s~35,4~~7,42~1,109~8,121~1,123~1,125~8,107~8,114 -r+t+s+n~36,4~~7,43~1,109~8,125~1,123~1,125~8,111~8,118 -r+t+s+n+y~37,4~~7,44~1,109~8,126~1,123~1,125~8,112~8,119 -r+th~38,4~~7,46~1,109~8,120~1,123~1,125~8,106~8,113 -r+th+y~39,4~~7,47~1,109~8,121~1,123~1,125~8,107~8,114 -r+d+d+h~40,4~~7,48~1,109~8,125~1,123~1,125~8,111~8,118 -r+d+d+h+y~41,4~~7,49~1,109~8,126~1,123~1,125~8,112~8,119 -r+d+y~42,4~~7,50~1,109~8,121~1,123~1,125~8,107~8,114 -r+d+h~43,4~~7,51~1,109~8,122~1,123~1,125~8,108~8,115 -r+d+h+m~44,4~~7,52~1,109~8,125~1,123~1,125~8,111~8,118 -r+d+h+y~252,4~~7,53~1,109~8,123~1,123~1,125~8,109~8,116 -r+d+h+r~46,4~~7,54~1,109~8,122~1,123~1,125~8,108~8,115 -r+p~47,4~~7,55~1,109~8,120~1,123~1,125~8,106~8,113 -r+b+p~48,4~~7,56~1,109~8,121~1,123~1,125~8,107~8,114 -r+b+b~49,4~~7,57~1,109~8,121~1,123~1,125~8,107~8,114 -r+b+h~50,4~~7,58~1,110~8,124~1,125~1,125~8,110~8,117 -r+m+m~51,4~~7,59~1,110~8,121~1,125~1,125~8,107~8,114 -r+y~52,4~~7,60~1,110~8,120~1,125~1,125~8,106~8,113 -r+w~196,4~~7,61~1,109~8,120~1,123~1,125~8,106~8,113 -r+sh~53,4~~7,62~1,109~8,120~1,123~1,125~8,106~8,113 -r+sh+y~54,4~~7,63~1,109~8,122~1,123~1,125~8,108~8,115 -r+Sh~55,4~~7,64~1,109~8,120~1,123~1,125~8,106~8,113 -r+Sh+N~56,4~~7,65~1,109~8,123~1,123~1,125~8,109~8,116 -r+Sh+N+y~57,4~~7,66~1,109~8,126~1,123~1,125~8,112~8,119 -r+Sh+m~58,4~~7,67~1,109~8,124~1,123~1,125~8,110~8,117 -r+Sh+y~59,4~~7,68~1,109~8,123~1,123~1,125~8,109~8,116 -r+s~60,4~~7,69~1,109~8,120~1,123~1,125~8,106~8,113 -r+h~61,4~~7,70~1,109~8,121~1,123~1,125~8,107~8,114 -r+k+Sh~62,4~~7,71~1,109~8,121~1,123~1,125~8,107~8,114 -l+g+w~63,4~~7,72~1,109~8,122~1,123~1,125~8,108~8,115 -l+b+y~64,4~~7,73~1,109~8,122~1,123~1,125~8,108~8,115 -l+m~65,4~~7,74~1,109~8,120~1,123~1,125~8,106~8,113 -l+y~66,4~~7,75~1,109~8,120~1,123~1,125~8,106~8,113 -l+w~67,4~~7,76~1,109~8,120~1,123~1,125~8,106~8,113 -l+l~68,4~~7,77~1,109~8,120~1,123~1,125~8,106~8,113 -l+h+w~197,4~~7,78~1,109~~1,123~1,125~8,106~8,113 -w+y~69,4~~7,79~1,109~8,121~1,123~1,125~8,107~8,114 -w+r~70,4~~7,80~1,109~8,121~1,123~1,125~8,107~8,114 -w+n~195,4~~7,81~1,109~8,120~1,123~1,125~8,106~8,113 -w+w~194,4~~7,82~1,109~8,120~1,123~1,125~8,106~8,113 -sh+ts~71,4~~7,83~1,109~8,120~1,123~1,125~8,106~8,113 -sh+ts+y~72,4~~7,84~1,109~8,122~1,123~1,125~8,108~8,115 -sh+tsh~73,4~~7,85~1,109~8,120~1,123~1,125~8,106~8,113 -sh+N~74,4~~7,86~1,109~8,120~1,123~1,125~8,106~8,113 -sh+n~75,4~~7,87~1,109~8,120~1,123~1,125~8,106~8,113 -sh+p~76,4~~7,88~1,109~8,120~1,123~1,125~8,106~8,113 -sh+b+y~77,4~~7,89~1,109~8,122~1,123~1,125~8,108~8,115 -sh+m~78,4~~7,90~1,109~8,120~1,123~1,125~8,106~8,113 -sh+y~79,4~~7,91~1,109~8,120~1,123~1,125~8,106~8,113 -sh+r+y~80,4~~7,92~1,109~8,121~1,123~1,125~8,107~8,114 -sh+l~81,4~~7,93~1,109~8,120~1,123~1,125~8,106~8,113 -sh+w+g~82,4~~7,94~1,109~8,122~1,123~1,125~8,108~8,115 -sh+w+y~83,4~~7,95~1,109~8,121~1,123~1,125~8,107~8,114 -sh+sh~84,4~~7,96~1,109~8,120~1,123~1,125~8,106~8,113 -Sh+k~85,4~~7,97~1,109~8,120~1,123~1,125~8,106~8,113 -Sh+k+r~86,4~~7,98~1,109~8,121~1,123~1,125~8,107~8,114 -Sh+T~87,4~~7,99~1,109~8,120~1,123~1,125~8,106~8,113 -Sh+T+y~88,4~~7,100~1,109~8,123~1,123~1,125~8,109~8,116 -Sh+T+r~89,4~~7,101~1,109~8,121~1,123~1,125~8,107~8,114 -Sh+T+r+y~90,4~~7,102~1,109~8,123~1,123~1,125~8,109~8,116 -Sh+T+w~91,4~~7,103~1,109~8,123~1,123~1,125~8,109~8,116 -Sh+Th~92,4~~7,104~1,109~8,120~1,123~1,125~8,106~8,113 -Sh+Th+y~93,4~~7,105~1,109~8,123~1,123~1,125~8,109~8,116 -Sh+N~94,4~~7,106~1,109~8,120~1,123~1,125~8,106~8,113 -Sh+N+y~95,4~~7,107~1,109~8,123~1,123~1,125~8,109~8,116 -Sh+D~96,4~~7,108~1,109~8,120~1,123~1,125~8,106~8,113 -Sh+Th~191,4~~7,109~1,109~8,120~1,123~1,125~8,106~8,113 -Sh+p~97,4~~7,110~1,109~8,120~1,123~1,125~8,106~8,113 -Sh+p+r~98,4~~7,111~1,109~8,121~1,123~1,125~8,107~8,114 -Sh+m~99,4~~7,112~1,109~8,120~1,123~1,125~8,106~8,113 -Sh+y~100,4~~7,113~1,109~8,121~1,123~1,125~8,107~8,114 -Sh+w~101,4~~7,114~1,109~8,120~1,123~1,125~8,106~8,113 -Sh+Sh~102,4~~7,115~1,109~8,120~1,123~1,125~8,106~8,113 -s+k+s~103,4~~7,116~1,109~8,124~1,123~1,125~8,110~8,117 -s+kh~104,4~~7,117~1,109~8,120~1,123~1,125~8,106~8,113 -s+ts+y~105,4~~7,118~1,109~8,122~1,123~1,125~8,108~8,115 -s+T~106,4~~7,119~1,109~8,120~1,123~1,125~8,106~8,113 -s+Th~107,4~~7,120~1,109~8,120~1,123~1,125~8,106~8,113 -s+T+y~108,4~~7,121~1,109~8,121~1,123~1,125~8,107~8,114 -s+t+r~109,4~~7,122~1,109~8,121~1,123~1,125~8,107~8,114 -s+t+w~110,4~~7,123~1,109~8,121~1,123~1,125~8,107~8,114 -s+th~111,4~~7,124~1,109~8,120~1,123~1,125~8,106~8,113 -s+th+y~112,4~~7,125~1,109~8,122~1,123~1,125~8,108~8,115 -s+n+y~113,4~~7,126~1,109~8,122~1,123~1,125~8,108~8,115 -s+n+w~114,4~~8,33~1,109~8,122~1,123~1,125~8,108~8,115 -s+ph~115,4~~8,34~1,109~8,120~1,123~1,125~8,106~8,113 -s+ph+y~116,4~~8,35~1,109~8,122~1,123~1,125~8,108~8,115 -s+y~117,4~~8,36~1,109~8,120~1,123~1,125~8,106~8,113 -s+r+w~118,4~~8,37~1,109~8,122~1,123~1,125~8,108~8,115 -s+s~119,4~~8,38~1,109~8,120~1,123~1,125~8,106~8,113 -s+s+w~120,4~~8,39~1,109~8,122~1,123~1,125~8,108~8,115 -s+h~121,4~~8,40~1,109~8,120~1,123~1,125~8,106~8,113 -s+w+y~122,4~~8,41~1,109~8,122~1,123~1,125~8,108~8,115 -h+ny~123,4~~8,42~1,109~8,120~1,123~1,125~8,106~8,113 -h+N~124,4~~8,43~1,109~8,120~1,123~1,125~8,106~8,113 -h+t~125,4~~8,44~1,109~8,120~1,123~1,125~8,106~8,113 -h+n~126,4~~8,46~1,109~8,120~1,123~1,125~8,106~8,113 -h+n+y~253,4~~8,47~1,109~8,122~1,123~1,125~8,108~8,115 -h+p~128,4~~8,48~1,109~8,120~1,123~1,125~8,106~8,113 -h+ph~129,4~~8,49~1,109~8,120~1,123~1,125~8,106~8,113 -h+m~130,4~~8,50~1,109~8,120~1,123~1,125~8,106~8,113 -h+y~131,4~~8,51~1,109~8,120~1,123~1,125~8,106~8,113 -h+l~132,4~~8,52~1,109~8,120~1,123~1,125~8,106~8,113 -h+s~133,4~~8,53~1,109~8,120~1,123~1,125~8,106~8,113 -h+s+w~134,4~~8,54~1,109~8,122~1,123~1,125~8,108~8,115 -h+w+y~135,4~~8,55~1,109~8,121~1,123~1,125~8,107~8,114 -k+Sh+N~136,4~~8,56~1,109~8,124~1,123~1,125~8,110~8,117 -k+Sh+m~137,4~~8,57~1,109~8,124~1,123~1,125~8,110~8,117 -k+Sh+m+y~138,4~~8,58~1,109~8,126~1,123~1,125~8,112~8,119 -k+Sh+y~139,4~~8,59~1,109~8,123~1,123~1,125~8,109~8,116 -k+Sh+r~140,4~~8,60~1,109~8,123~1,123~1,125~8,109~8,116 -k+Sh+l~141,4~~8,61~1,109~8,124~1,123~1,125~8,110~8,117 -k+Sh+w~249,4~~8,62~1,109~8,122~1,123~1,125~8,108~8,115 -a+y~143,4~~8,63~1,109~8,120~1,123~1,125~8,106~8,113 -a+r~144,4~~8,64~1,109~8,120~1,123~1,125~8,106~8,113 -a+r+y~145,4~~8,65~1,109~8,121~1,123~1,125~8,107~8,114 +b+h+N~164,3~~6,77~1,109~6,124~1,123~1,125~6,110~6,117~f57,f9e +b+h+n~165,3~~6,78~1,109~6,124~1,123~1,125~6,110~6,117~f57,fa3 +b+h+m~251,3~~6,79~1,109~6,124~1,123~1,125~6,110~6,117~f57,fa8 +b+h+y~167,3~~6,80~1,109~6,122~1,123~1,125~6,108~6,115~f57,fb1 +b+h+r~168,3~~6,81~1,109~6,121~1,123~1,125~6,107~6,114~f57,fb2 +b+h+w~169,3~~6,82~1,109~6,122~1,123~1,125~6,108~6,115~f57,fad +m+ny~170,3~~6,83~1,109~6,121~1,123~1,125~6,107~6,114~f58,f99 +m+N~171,3~~6,84~1,109~6,120~1,123~1,125~6,106~6,113~f58,f9e +m+n~172,3~~6,85~1,109~6,120~1,123~1,125~6,106~6,113~f58,fa3 +m+n+y~173,3~~6,86~1,109~6,122~1,123~1,125~6,108~6,115~f58,fa3,fb1 +m+p~174,3~~6,87~1,109~6,120~1,123~1,125~6,106~6,113~f58,fa4 +m+p+r~175,3~~6,88~1,109~6,122~1,123~1,125~6,108~6,115~f58,fa4,fb2 +m+ph~176,3~~6,89~1,109~6,120~1,123~1,125~6,106~6,113~f58,fa5 +m+b~177,3~~6,90~1,109~6,120~1,123~1,125~6,106~6,113~f58,fa6 +m+b+h~178,3~~6,91~1,109~6,124~1,123~1,125~6,110~6,117~f58,fa6,fb7 +m+b+h+y~179,3~~6,92~1,109~6,125~1,123~1,125~6,111~6,118~f58,fa6,fb7,fb1 +m+m~180,3~~6,93~1,109~6,120~1,123~1,125~6,106~6,113~f58,fa8 +m+l~181,3~~6,94~1,109~6,120~1,123~1,125~6,106~6,113~f58,fb3 +m+w~182,3~~6,95~1,109~6,120~1,123~1,125~6,106~6,113~f58,fad +m+s~183,3~~6,96~1,109~6,120~1,123~1,125~6,106~6,113~f58,fb6 +m+h~184,3~~6,97~1,109~6,120~1,123~1,125~6,106~6,113~f58,fb7 +y+y~185,3~~6,98~1,109~6,120~1,123~1,125~6,106~6,113~f61,fbb +y+r~186,3~~6,99~1,109~6,120~1,123~1,125~6,106~6,113~f61,fb2 +y+w~187,3~~6,100~1,109~6,120~1,123~1,125~6,106~6,113~f61,fad +y+s~188,3~~6,101~1,109~6,120~1,123~1,125~6,106~6,113~f61,fb6 +r+kh~189,3~~6,102~1,109~6,120~1,123~1,125~6,106~6,113~f62,f91 +r+g+h~190,3~~6,103~1,109~6,121~1,123~1,125~6,107~6,114~f62,f92,fb7 +r+g+h+y~191,3~~6,104~1,109~6,123~1,123~1,125~6,109~6,116~f62,f92,fb7,fb1 +r+ts+y~192,3~~6,105~1,109~6,121~1,123~1,125~6,107~6,114~f62,fa9,fb1 +r+tsh~193,3~~7,33~1,109~6,120~1,123~1,125~6,106~6,113~f62,faa +r+dz+ny~194,3~~7,34~1,109~6,122~1,123~1,125~6,108~6,115~f62,fab,f99 +r+dz+y~195,3~~7,35~1,109~6,121~1,123~1,125~6,107~6,114~f62,fab,fb1 +r+T~196,3~~7,36~1,109~6,120~1,123~1,125~6,106~6,113~f62,f9a +r+Th~197,3~~7,37~1,109~6,120~1,123~1,125~6,106~6,113~f62,f9b +r+D~198,3~~7,38~1,109~6,120~1,123~1,125~6,106~6,113~f62,f9c +r+N~199,3~~7,39~1,109~6,120~1,123~1,125~6,106~6,113~f62,f9e +r+t+w~33,4~~7,40~1,109~8,121~1,123~1,125~8,107~8,114~f62,f9f,fad +r+t+t~34,4~~7,41~1,109~8,122~1,123~1,125~8,108~8,115~f62,f9f,f9f +r+t+s~35,4~~7,42~1,109~8,121~1,123~1,125~8,107~8,114~f62,f9f,fb6 +r+t+s+n~36,4~~7,43~1,109~8,125~1,123~1,125~8,111~8,118~f62,f9f,fb6,fa3 +r+t+s+n+y~37,4~~7,44~1,109~8,126~1,123~1,125~8,112~8,119~f62,f9f,fb6,fa3,fb1 +r+th~38,4~~7,46~1,109~8,120~1,123~1,125~8,106~8,113~f62,fa0 +r+th+y~39,4~~7,47~1,109~8,121~1,123~1,125~8,107~8,114~f62,fa0,fb1 +r+d+d+h~40,4~~7,48~1,109~8,125~1,123~1,125~8,111~8,118~f62,fa1,fa2 +r+d+d+h+y~41,4~~7,49~1,109~8,126~1,123~1,125~8,112~8,119~f62,fa1,fa2,fb1 +r+d+y~42,4~~7,50~1,109~8,121~1,123~1,125~8,107~8,114~f62,fa1,fb1 +r+d+h~43,4~~7,51~1,109~8,122~1,123~1,125~8,108~8,115~f62,fa1,fb7 +r+d+h+m~44,4~~7,52~1,109~8,125~1,123~1,125~8,111~8,118~f62,fa1,fb7,fa8 +r+d+h+y~252,4~~7,53~1,109~8,123~1,123~1,125~8,109~8,116~f62,fa2,fb1 +r+d+h+r~46,4~~7,54~1,109~8,122~1,123~1,125~8,108~8,115~f62,fa2,fb2 +r+p~47,4~~7,55~1,109~8,120~1,123~1,125~8,106~8,113~f62,fa4 +r+b+p~48,4~~7,56~1,109~8,121~1,123~1,125~8,107~8,114~f62,fa6,fa4 +r+b+b~49,4~~7,57~1,109~8,121~1,123~1,125~8,107~8,114~f62,fa6,fa6 +r+b+h~50,4~~7,58~1,110~8,124~1,125~1,125~8,110~8,117~f62,fa6,fb7 +r+m+m~51,4~~7,59~1,110~8,121~1,125~1,125~8,107~8,114~f62,fa8,fa8 +// DLC or 6a bb? or 62 b1? which? +r+y~52,4~~7,60~1,110~8,120~1,125~1,125~8,106~8,113~f62,fbb +// DLC or f6a,fba? +r+w~196,4~~7,61~1,109~8,120~1,123~1,125~8,106~8,113~f62,fba +// DLC f62 or f6a? +r+sh~53,4~~7,62~1,109~8,120~1,123~1,125~8,106~8,113~f62,fb4 +r+sh+y~54,4~~7,63~1,109~8,122~1,123~1,125~8,108~8,115~f62,fb4,fb1 +r+Sh~55,4~~7,64~1,109~8,120~1,123~1,125~8,106~8,113~f62,fb5 +r+Sh+N~56,4~~7,65~1,109~8,123~1,123~1,125~8,109~8,116~f62,fb5,f9e +r+Sh+N+y~57,4~~7,66~1,109~8,126~1,123~1,125~8,112~8,119~f62,fb5,f9e,fb1 +r+Sh+m~58,4~~7,67~1,109~8,124~1,123~1,125~8,110~8,117~f62,fb5,fa8 +r+Sh+y~59,4~~7,68~1,109~8,123~1,123~1,125~8,109~8,116~f62,fb5,fb1 +r+s~60,4~~7,69~1,109~8,120~1,123~1,125~8,106~8,113~f62,fb6 +r+h~61,4~~7,70~1,109~8,121~1,123~1,125~8,107~8,114~f62,fb7 +r+k+Sh~62,4~~7,71~1,109~8,121~1,123~1,125~8,107~8,114~f62,f90,fb5 +l+g+w~63,4~~7,72~1,109~8,122~1,123~1,125~8,108~8,115~f63,f92,fad +l+b+y~64,4~~7,73~1,109~8,122~1,123~1,125~8,108~8,115~f63,fa6,fb1 +l+m~65,4~~7,74~1,109~8,120~1,123~1,125~8,106~8,113~f63,fa8 +l+y~66,4~~7,75~1,109~8,120~1,123~1,125~8,106~8,113~f63,fb1 +l+w~67,4~~7,76~1,109~8,120~1,123~1,125~8,106~8,113~f63,fad +l+l~68,4~~7,77~1,109~8,120~1,123~1,125~8,106~8,113~f63,fb3 +l+h+w~197,4~~7,78~1,109~~1,123~1,125~8,106~8,113~f63,fb7,fad +w+y~69,4~~7,79~1,109~8,121~1,123~1,125~8,107~8,114~f5d,fb1 +w+r~70,4~~7,80~1,109~8,121~1,123~1,125~8,107~8,114~f5d,fb2 +w+n~195,4~~7,81~1,109~8,120~1,123~1,125~8,106~8,113~f5d,fa3 +w+w~194,4~~7,82~1,109~8,120~1,123~1,125~8,106~8,113~f5d,fba +sh+ts~71,4~~7,83~1,109~8,120~1,123~1,125~8,106~8,113~f64,fa9 +sh+ts+y~72,4~~7,84~1,109~8,122~1,123~1,125~8,108~8,115~f64,fa9,fb1 +sh+tsh~73,4~~7,85~1,109~8,120~1,123~1,125~8,106~8,113~f64,faa +sh+N~74,4~~7,86~1,109~8,120~1,123~1,125~8,106~8,113~f64,f9e +sh+n~75,4~~7,87~1,109~8,120~1,123~1,125~8,106~8,113~f64,fa3 +sh+p~76,4~~7,88~1,109~8,120~1,123~1,125~8,106~8,113~f64,fa4 +sh+b+y~77,4~~7,89~1,109~8,122~1,123~1,125~8,108~8,115~f64,fa6,fb1 +sh+m~78,4~~7,90~1,109~8,120~1,123~1,125~8,106~8,113~f64,fa8 +sh+y~79,4~~7,91~1,109~8,120~1,123~1,125~8,106~8,113~f64,fb1 +sh+r+y~80,4~~7,92~1,109~8,121~1,123~1,125~8,107~8,114~f64,fb2,fb1 +sh+l~81,4~~7,93~1,109~8,120~1,123~1,125~8,106~8,113~f64,fb3 +sh+w+g~82,4~~7,94~1,109~8,122~1,123~1,125~8,108~8,115~f64,fad,f92 +sh+w+y~83,4~~7,95~1,109~8,121~1,123~1,125~8,107~8,114~f64,fad,fb1 +sh+sh~84,4~~7,96~1,109~8,120~1,123~1,125~8,106~8,113~f64,fb4 +Sh+k~85,4~~7,97~1,109~8,120~1,123~1,125~8,106~8,113~f65,f90 +Sh+k+r~86,4~~7,98~1,109~8,121~1,123~1,125~8,107~8,114~f65,f90,fb2 +Sh+T~87,4~~7,99~1,109~8,120~1,123~1,125~8,106~8,113~f65,f9a +Sh+T+y~88,4~~7,100~1,109~8,123~1,123~1,125~8,109~8,116~f65,f9a,fb1 +Sh+T+r~89,4~~7,101~1,109~8,121~1,123~1,125~8,107~8,114~f65,f9a,fb2 +Sh+T+r+y~90,4~~7,102~1,109~8,123~1,123~1,125~8,109~8,116~f65,f9a,fb2,fb1 +Sh+T+w~91,4~~7,103~1,109~8,123~1,123~1,125~8,109~8,116~f65,f9a,fad +Sh+Th~92,4~~7,104~1,109~8,120~1,123~1,125~8,106~8,113~f65,f9b +Sh+Th+y~93,4~~7,105~1,109~8,123~1,123~1,125~8,109~8,116~f65,f9b,fb1 +Sh+N~94,4~~7,106~1,109~8,120~1,123~1,125~8,106~8,113~f65,f9e +Sh+N+y~95,4~~7,107~1,109~8,123~1,123~1,125~8,109~8,116~f65,f9e,fb1 +Sh+D~96,4~~7,108~1,109~8,120~1,123~1,125~8,106~8,113~f65,f9c +Sh+th~191,4~~7,109~1,109~8,120~1,123~1,125~8,106~8,113~f65,fa0 +Sh+p~97,4~~7,110~1,109~8,120~1,123~1,125~8,106~8,113~f65,fa4 +Sh+p+r~98,4~~7,111~1,109~8,121~1,123~1,125~8,107~8,114~f65,fa4,fb2 +Sh+m~99,4~~7,112~1,109~8,120~1,123~1,125~8,106~8,113~f65,fa8 +Sh+y~100,4~~7,113~1,109~8,121~1,123~1,125~8,107~8,114~f65,fb1 +Sh+w~101,4~~7,114~1,109~8,120~1,123~1,125~8,106~8,113~f65,fad +Sh+Sh~102,4~~7,115~1,109~8,120~1,123~1,125~8,106~8,113~f65,fb5 +s+k+s~103,4~~7,116~1,109~8,124~1,123~1,125~8,110~8,117~f66,f90,fb6 +s+kh~104,4~~7,117~1,109~8,120~1,123~1,125~8,106~8,113~f66,f91 +s+ts+y~105,4~~7,118~1,109~8,122~1,123~1,125~8,108~8,115~f66,fa9,fb1 +s+T~106,4~~7,119~1,109~8,120~1,123~1,125~8,106~8,113~f66,f9a +s+Th~107,4~~7,120~1,109~8,120~1,123~1,125~8,106~8,113~f66,f9b +s+t+y~108,4~~7,121~1,109~8,121~1,123~1,125~8,107~8,114~f66,f9f,fb1 +s+t+r~109,4~~7,122~1,109~8,121~1,123~1,125~8,107~8,114~f66,f9f,fb2 +s+t+w~110,4~~7,123~1,109~8,121~1,123~1,125~8,107~8,114~f66,f9f,fad +s+th~111,4~~7,124~1,109~8,120~1,123~1,125~8,106~8,113~f66,fa0 +s+th+y~112,4~~7,125~1,109~8,122~1,123~1,125~8,108~8,115~f66,fa0,fb1 +s+n+y~113,4~~7,126~1,109~8,122~1,123~1,125~8,108~8,115~f66,fa3,fb1 +s+n+w~114,4~~8,33~1,109~8,122~1,123~1,125~8,108~8,115~f66,fa3,fad +s+ph~115,4~~8,34~1,109~8,120~1,123~1,125~8,106~8,113~f66,fa5 +s+ph+y~116,4~~8,35~1,109~8,122~1,123~1,125~8,108~8,115~f66,fa5,fb1 +s+y~117,4~~8,36~1,109~8,120~1,123~1,125~8,106~8,113~f66,fb1 +s+r+w~118,4~~8,37~1,109~8,122~1,123~1,125~8,108~8,115~f66,fb2,fad +s+s~119,4~~8,38~1,109~8,120~1,123~1,125~8,106~8,113~f66,fb6 +s+s+w~120,4~~8,39~1,109~8,122~1,123~1,125~8,108~8,115~f66,fb6,fad +s+h~121,4~~8,40~1,109~8,120~1,123~1,125~8,106~8,113~f66,fb7 +s+w+y~122,4~~8,41~1,109~8,122~1,123~1,125~8,108~8,115~f66,fad,fb1 +h+ny~123,4~~8,42~1,109~8,120~1,123~1,125~8,106~8,113~f67,f99 +h+N~124,4~~8,43~1,109~8,120~1,123~1,125~8,106~8,113~f67,f9e +h+t~125,4~~8,44~1,109~8,120~1,123~1,125~8,106~8,113~f67,f9f +h+n~126,4~~8,46~1,109~8,120~1,123~1,125~8,106~8,113~f67,fa3 +h+n+y~253,4~~8,47~1,109~8,122~1,123~1,125~8,108~8,115~f67,fa3,fb1 +h+p~128,4~~8,48~1,109~8,120~1,123~1,125~8,106~8,113~f67,fa4 +h+ph~129,4~~8,49~1,109~8,120~1,123~1,125~8,106~8,113~f67,fa5 +h+m~130,4~~8,50~1,109~8,120~1,123~1,125~8,106~8,113~f67,fa8 +h+y~131,4~~8,51~1,109~8,120~1,123~1,125~8,106~8,113~f67,fb1 +h+l~132,4~~8,52~1,109~8,120~1,123~1,125~8,106~8,113~f67,fb3 +h+s~133,4~~8,53~1,109~8,120~1,123~1,125~8,106~8,113~f67,fb6 +h+s+w~134,4~~8,54~1,109~8,122~1,123~1,125~8,108~8,115~f67,fb6,fad +h+w+y~135,4~~8,55~1,109~8,121~1,123~1,125~8,107~8,114~f67,fad,fb1 +k+Sh+N~136,4~~8,56~1,109~8,124~1,123~1,125~8,110~8,117~f40,fb5,f9e +k+Sh+m~137,4~~8,57~1,109~8,124~1,123~1,125~8,110~8,117~f40,fb5,fa8 +k+Sh+m+y~138,4~~8,58~1,109~8,126~1,123~1,125~8,112~8,119~f40,fb5,fa8,fb1 +k+Sh+y~139,4~~8,59~1,109~8,123~1,123~1,125~8,109~8,116~f40,fb5,fb1 +k+Sh+r~140,4~~8,60~1,109~8,123~1,123~1,125~8,109~8,116~f40,fb5,fbc +k+Sh+l~141,4~~8,61~1,109~8,124~1,123~1,125~8,110~8,117~f40,fb5,fb3 +k+Sh+w~249,4~~8,62~1,109~8,122~1,123~1,125~8,108~8,115~f40,fb5,fad +a+y~143,4~~8,63~1,109~8,120~1,123~1,125~8,106~8,113~f68,fb1 +a+r~144,4~~8,64~1,109~8,120~1,123~1,125~8,106~8,113~f68,fb2 +a+r+y~145,4~~8,65~1,109~8,121~1,123~1,125~8,107~8,114~f68,fb2,fb1 //numbers 0~190,1~~10,48~~~~~~~0F20 @@ -674,26 +689,30 @@ a+r+y~145,4~~8,65~1,109~8,121~1,123~1,125~8,107~8,114 7~197,1~~10,55~~~~~~~0F27 8~198,1~~10,56~~~~~~~0F28 9~199,1~~10,57~~~~~~~0F29 ->0~50,5~~9,52 ->1~51,5~~9,53 ->2~52,5~~9,54 ->3~53,5~~9,55 ->4~54,5~~9,56 ->5~55,5~~9,57 ->6~56,5~~9,58 ->7~57,5~~9,59 ->8~58,5~~9,60 ->9~59,5~~9,61 -<0~60,5~~9,62 -<1~61,5~~9,63 -<2~62,5~~9,64 -<3~63,5~~9,65 -<4~64,5~~9,66 -<5~65,5~~9,67 -<6~66,5~~9,68 -<7~67,5~~9,69 -<8~68,5~~9,70 -<9~69,5~~9,71 + +// DLC: there exist half-measures: use U+0F20-U+0F29. +>0~50,5~~9,52~~~~~~~none +>1~51,5~~9,53~~~~~~~none +>2~52,5~~9,54~~~~~~~none +>3~53,5~~9,55~~~~~~~none +>4~54,5~~9,56~~~~~~~none +>5~55,5~~9,57~~~~~~~none +>6~56,5~~9,58~~~~~~~none +>7~57,5~~9,59~~~~~~~none +>8~58,5~~9,60~~~~~~~none +>9~59,5~~9,61~~~~~~~none +<0~60,5~~9,62~~~~~~~none +<1~61,5~~9,63~~~~~~~none +<2~62,5~~9,64~~~~~~~none +<3~63,5~~9,65~~~~~~~none +<4~64,5~~9,66~~~~~~~none +<5~65,5~~9,67~~~~~~~none +<6~66,5~~9,68~~~~~~~none +<7~67,5~~9,69~~~~~~~none +<8~68,5~~9,70~~~~~~~none +<9~69,5~~9,71~~~~~~~none + +// DLC EWTS doesn't give mappings for these... 1/2~70,5~~9,72~~~~~~~0F33 1+1/2~71,5~~9,73~~~~~~~0F2A 2+1/2~72,5~~9,74~~~~~~~0F2B @@ -706,10 +725,14 @@ a+r+y~145,4~~8,65~1,109~8,121~1,123~1,125~8,107~8,114 9+1/2~79,5~~9,81~~~~~~~0F32 -// FIXME: make this punctuation: +// DLC is this for (40 etc.),7c,60,72 ??? or for standalone f60,f72,f7c? +// Special combination: +o'i~156,5~~10,61~~~~~~~f7c,f60,f72 +// DLC FIXME: make this punctuation: +// nyi.zla: +__TILDE__^~91,5~~9,89~~~~~~~0F82 +// DLC FIXME: make this punctuation: M^~241,1~~8,94~~~~~~~0F83 -// bindu + datse + thigle (FIXME: make this punctuation): -__TILDE__^~242,1~~8,95~~~~~~~0F82 //punctuation _~32,1~~1,32~~~~~~~0020 ~45,1~~1,45~~~~~~~0F0B @@ -733,30 +756,41 @@ _~32,5~~10,32~~~~~~~0020 ~45,5~~10,45~~~~~~~0F0B //bindus -`~241,1~~8,94~~~~~~~0F83 -// I thought EWTS said 0F83 was M^, not ` -iM~243,1~~8,96 -iM~244,1~~8,97 --iM~245,1~~8,98 -eM~246,1~~8,99 -eM~247,1~~8,100 -aiM~248,1~~8,101 -oM~249,1~~8,102 -oM~250,1~~8,103 -auM~251,1~~8,104 +// DLC FIXME: bindu is 7e or not? +iM~243,1~~8,96~~~~~~~f72,f7e +iM~244,1~~8,97~~~~~~~f72,f7e +-iM~245,1~~8,98~~~~~~~f80,f7e +eM~246,1~~8,99~~~~~~~f7a,f7e +eM~247,1~~8,100~~~~~~~f7a,f7e +aiM~248,1~~8,101~~~~~~~f7b,f7e +oM~249,1~~8,102~~~~~~~f7c,f7e +oM~250,1~~8,103~~~~~~~f7c,f7e +auM~251,1~~8,104~~~~~~~f7d,f7e +// bindu + datse~241,1~~8,94~~~~~~~0F83 +// bindu + kigu~243,1~~8,96 +// bindu + short gigu~244,1~~8,97 +// bindu + log yig gigu~245,1~~8,98 +// bindu + normal drengu~246,1~~8,99 +// bindu + short drengbu~247,1~~8,100 +// bindu + double drengbu~248,1~~8,101 +// bindu + normal naro~249,1~~8,102 +// bindu + raised naro~250,1~~8,103 +// bindu + double naro~251,1~~8,104 + + //reduced-height consonants -k~180,1~~1,92~1,109~1,111~1,123~1,125~10,118~10,120 -g~181,1~~1,93~1,109~1,111~1,123~1,125~10,118~10,120 -ny~182,1~~1,94~1,109~1,112~1,123~1,125~10,115~10,121 -t~183,1~~1,95~1,109~1,112~1,123~1,125~10,115~10,121 -d~184,1~~1,96~1,109~1,111~1,123~1,125~10,118~10,120 -n~185,1~~1,97~1,109~1,111~1,123~1,125~10,118~10,120 -zh~186,1~~1,98~1,109~1,111~1,123~1,125~10,118~10,120 -sh~187,1~~1,99~1,109~1,111~1,123~1,125~10,118~10,120 -h~188,1~~1,100~1,109~1,112~1,123~1,125~10,119 -rt~189,1~~1,101~1,109~1,113~1,123~1,125~10,116~10,124 -h~156,1~~1,102~1,109~~1,123~1,125~10,114~10,122 +k~180,1~~1,92~1,109~1,111~1,123~1,125~10,118~10,120~f40 +g~181,1~~1,93~1,109~1,111~1,123~1,125~10,118~10,120~f42 +ny~182,1~~1,94~1,109~1,112~1,123~1,125~10,115~10,121~f49 +t~183,1~~1,95~1,109~1,112~1,123~1,125~10,115~10,121~f4f +d~184,1~~1,96~1,109~1,111~1,123~1,125~10,118~10,120~f51 +n~185,1~~1,97~1,109~1,111~1,123~1,125~10,118~10,120~f53 +zh~186,1~~1,98~1,109~1,111~1,123~1,125~10,118~10,120~f5e +sh~187,1~~1,99~1,109~1,111~1,123~1,125~10,118~10,120~f64 +h~188,1~~1,100~1,109~1,112~1,123~1,125~10,119~~f67 +rt~189,1~~1,101~1,109~1,113~1,123~1,125~10,116~10,124~f62,f9f +h~156,1~~1,102~1,109~~1,123~1,125~10,114~10,122~f67 //half-height consonants k~200,5~~10,71~1,109~~1,123~1,125~~~0F90 @@ -797,134 +831,132 @@ l~234,5~~10,105~1,109~~1,123~1,125~~~0FB3 sh~235,5~~10,106~1,109~~1,123~1,125~~~0FB4 Sh~236,5~~10,107~1,109~~1,123~1,125~~~0FB5 s~237,5~~10,108~1,109~~1,123~1,125~~~0FB6 -h~238,5~~10,109~1,109~~1,123~1,125~~~0FB6 +h~238,5~~10,109~1,109~~1,123~1,125~~~0FB7 a~239,5~~10,110~1,109~~1,123~1,125~~~0FB8 k+Sh~240,5~~10,111~1,109~~1,123~1,125~~~0FB9 //vowels -i~220,1~~1,109~~~~~~~~~8,96 -i~221,1~~1,110~~~~~~~~~8,97 -u~165,1~~1,111 -u~226,1~~1,112 -u~167,1~~1,113 -u~168,1~~1,114 -u~169,1~~1,115 -u~176,1~~1,116 -u~177,1~~1,117 -u~223,1~~1,118 -u~224,1~~1,119 -u~225,1~~1,120 -u~227,1~~1,121 -u~228,1~~1,122 -e~232,1~~1,123~~~~~~~~~8,99 -e~233,1~~1,124~~~~~~~~~8,100 -o~235,1~~1,125~~~~~~~~~8,102 -o~236,1~~1,126~~~~~~~~~8,103 -u~178,1~~2,111 -u~179,1~~2,112 -u~168,1~~2,113 -u~169,1~~2,114 -u~225,1~~2,115 -u~228,1~~2,116 -u~229,1~~2,117 -u~230,1~~2,118 -u~231,1~~2,119 -A~201,2~~4,106 -A~202,2~~4,107 -A~203,2~~4,108 -A~204,2~~4,109 -A~205,2~~4,110 -A~206,2~~4,111 -A~207,2~~4,112 -U~211,2~~4,113 -U~212,2~~4,114 -U~213,2~~4,115 -U~214,2~~4,116 -U~215,2~~4,117 -U~216,2~~4,118 -U~217,2~~4,119 -u~224,2~~4,120 -u~225,2~~4,121 -u~226,2~~4,122 -u~227,2~~4,123 -u~228,2~~4,124 -u~229,2~~4,125 -u~230,2~~4,126 -A~201,3~~6,106 -A~202,3~~6,107 -A~203,3~~6,108 -A~204,3~~6,109 -A~205,3~~6,110 -A~206,3~~6,111 -A~207,3~~6,112 -U~211,3~~6,113 -U~212,3~~6,114 -U~213,3~~6,115 -U~214,3~~6,116 -U~215,3~~6,117 -U~216,3~~6,118 -U~217,3~~6,119 -u~224,3~~6,120 -u~225,3~~6,121 -u~226,3~~6,122 -u~227,3~~6,123 -u~228,3~~6,124 -u~229,3~~6,125 -u~230,3~~6,126 -A~201,4~~8,106 -A~202,4~~8,107 -A~203,4~~8,108 -A~204,4~~8,109 -A~205,4~~8,110 -A~206,4~~8,111 -A~207,4~~8,112 -U~211,4~~8,113 -U~212,4~~8,114 -U~213,4~~8,115 -U~214,4~~8,116 -U~215,4~~8,117 -U~216,4~~8,118 -U~217,4~~8,119 -u~224,4~~8,120 -u~225,4~~8,121 -u~226,4~~8,122 -u~227,4~~8,123 -u~228,4~~8,124 -u~229,4~~8,125 -u~230,4~~8,126 -A~161,1~~10,114 -A~162,1~~10,115 -A~163,1~~10,116 -A~164,1~~10,117 -A~211,1~~10,118 -A~212,1~~10,119 -U~213,1~~10,120 -U~214,1~~10,121 -U~215,1~~10,122 -U~216,1~~10,123 -U~217,1~~10,124 -U~218,1~~10,125 -U~219,1~~10,126 +i~220,1~~1,109~~~~~~~0F72~~8,96 +i~221,1~~1,110~~~~~~~0F72~~8,97 +u~165,1~~1,111~~~~~~~0F74 +u~226,1~~1,112~~~~~~~0F74 +u~167,1~~1,113~~~~~~~0F74 +u~168,1~~1,114~~~~~~~0F74 +u~169,1~~1,115~~~~~~~0F74 +u~176,1~~1,116~~~~~~~0F74 +u~177,1~~1,117~~~~~~~0F74 +u~223,1~~1,118~~~~~~~0F74 +u~224,1~~1,119~~~~~~~0F74 +u~225,1~~1,120~~~~~~~0F74 +u~227,1~~1,121~~~~~~~0F74 +u~228,1~~1,122~~~~~~~0F74 +e~232,1~~1,123~~~~~~~0F7A~~8,99 +e~233,1~~1,124~~~~~~~0F7A~~8,100 +o~235,1~~1,125~~~~~~~0F7C~~8,102 +o~236,1~~1,126~~~~~~~0F7C~~8,103 +u~178,1~~2,111~~~~~~~0F74 +u~179,1~~2,112~~~~~~~0F74 +u~168,1~~2,113~~~~~~~0F74 +u~169,1~~2,114~~~~~~~0F74 +u~225,1~~2,115~~~~~~~0F74 +u~228,1~~2,116~~~~~~~0F74 +u~229,1~~2,117~~~~~~~0F74 +u~230,1~~2,118~~~~~~~0F74 +u~231,1~~2,119~~~~~~~0F74 +A~201,2~~4,106~~~~~~~0F71 +A~202,2~~4,107~~~~~~~0F71 +A~203,2~~4,108~~~~~~~0F71 +A~204,2~~4,109~~~~~~~0F71 +A~205,2~~4,110~~~~~~~0F71 +A~206,2~~4,111~~~~~~~0F71 +A~207,2~~4,112~~~~~~~0F71 +U~211,2~~4,113~~~~~~~0F75 +U~212,2~~4,114~~~~~~~0F75 +U~213,2~~4,115~~~~~~~0F75 +U~214,2~~4,116~~~~~~~0F75 +U~215,2~~4,117~~~~~~~0F75 +U~216,2~~4,118~~~~~~~0F75 +U~217,2~~4,119~~~~~~~0F75 +u~224,2~~4,120~~~~~~~0F74 +u~225,2~~4,121~~~~~~~0F74 +u~226,2~~4,122~~~~~~~0F74 +u~227,2~~4,123~~~~~~~0F74 +u~228,2~~4,124~~~~~~~0F74 +u~229,2~~4,125~~~~~~~0F74 +u~230,2~~4,126~~~~~~~0F74 +A~201,3~~6,106~~~~~~~0F71 +A~202,3~~6,107~~~~~~~0F71 +A~203,3~~6,108~~~~~~~0F71 +A~204,3~~6,109~~~~~~~0F71 +A~205,3~~6,110~~~~~~~0F71 +A~206,3~~6,111~~~~~~~0F71 +A~207,3~~6,112~~~~~~~0F71 +U~211,3~~6,113~~~~~~~0F75 +U~212,3~~6,114~~~~~~~0F75 +U~213,3~~6,115~~~~~~~0F75 +U~214,3~~6,116~~~~~~~0F75 +U~215,3~~6,117~~~~~~~0F75 +U~216,3~~6,118~~~~~~~0F75 +U~217,3~~6,119~~~~~~~0F75 +u~224,3~~6,120~~~~~~~0F74 +u~225,3~~6,121~~~~~~~0F74 +u~226,3~~6,122~~~~~~~0F74 +u~227,3~~6,123~~~~~~~0F74 +u~228,3~~6,124~~~~~~~0F74 +u~229,3~~6,125~~~~~~~0F74 +u~230,3~~6,126~~~~~~~0F74 +A~201,4~~8,106~~~~~~~0F71 +A~202,4~~8,107~~~~~~~0F71 +A~203,4~~8,108~~~~~~~0F71 +A~204,4~~8,109~~~~~~~0F71 +A~205,4~~8,110~~~~~~~0F71 +A~206,4~~8,111~~~~~~~0F71 +A~207,4~~8,112~~~~~~~0F71 +U~211,4~~8,113~~~~~~~0F75 +U~212,4~~8,114~~~~~~~0F75 +U~213,4~~8,115~~~~~~~0F75 +U~214,4~~8,116~~~~~~~0F75 +U~215,4~~8,117~~~~~~~0F75 +U~216,4~~8,118~~~~~~~0F75 +U~217,4~~8,119~~~~~~~0F75 +u~224,4~~8,120~~~~~~~0F74 +u~225,4~~8,121~~~~~~~0F74 +u~226,4~~8,122~~~~~~~0F74 +u~227,4~~8,123~~~~~~~0F74 +u~228,4~~8,124~~~~~~~0F74 +u~229,4~~8,125~~~~~~~0F74 +u~230,4~~8,126~~~~~~~0F74 +A~161,1~~10,114~~~~~~~0F71 +A~162,1~~10,115~~~~~~~0F71 +A~163,1~~10,116~~~~~~~0F71 +A~164,1~~10,117~~~~~~~0F71 +A~211,1~~10,118~~~~~~~0F71 +A~212,1~~10,119~~~~~~~0F71 +U~213,1~~10,120~~~~~~~0F75 +U~214,1~~10,121~~~~~~~0F75 +U~215,1~~10,122~~~~~~~0F75 +U~216,1~~10,123~~~~~~~0F75 +U~217,1~~10,124~~~~~~~0F75 +U~218,1~~10,125~~~~~~~0F75 +U~219,1~~10,126~~~~~~~0F75 cantillation sign,heavy beat~80,5~~9,82~~~~~~~0FC0 cantillation sign,light beat~81,5~~9,83~~~~~~~0FC1 cantillation sign,cang.te-u~82,5~~9,84~~~~~~~0FC2 cantillation sign sbub.chal~83,5~~9,85~~~~~~~0FC3 -zhi.rol.btags~84,5~~9,86 +zhi.rol.btags~84,5~~9,86~~~~~~~none -sher.bu~90,5~~9,88 -nyi.zla~91,5~~9,89 -kuruka~92,5~~9,90 -no name~93,5~~9,91 +sher.bu~90,5~~9,88~~~~~~~none +kuruka~92,5~~9,90~~~~~~~none +no name~93,5~~9,91~~~~~~~none -dbu.khang.g-yon~208,1~~9,93~~~~~~~0F3C -dbu.khang.g-yas~209,1~~9,94~~~~~~~0F3D -yungs.drung (reversed)~97,5~~9,97 -yungs.drung (standard)~98,5~~9,98 +// DLC FIXME: aren't these elsewhere in unicode, though? +yungs.drung (reversed)~97,5~~9,97~~~~~~~none +yungs.drung (standard)~98,5~~9,98~~~~~~~none -mchan rtags trailing~99,5~~9,99 -mchan rtags leading~100,5~~9,100 +mchan rtags trailing~99,5~~9,99~~~~~~~none +mchan rtags leading~100,5~~9,100~~~~~~~none mtshan.rtags~101,5~~9,101~~~~~~~0F37 mtshan.rtags zhes.sa~102,5~~9,102~~~~~~~0F35 @@ -938,20 +970,20 @@ mchu.can~109,5~~9,109~~~~~~~0F89~ gru.can.rgyings~110,5~~9,110~~~~~~~0F8A~ gru.med.gyings~111,5~~9,111~~~~~~~0F8B -single vhite pebble~115,5~~9,115~~~~~~~0F1A +single white pebble~115,5~~9,115~~~~~~~0F1A single black pebble~116,5~~9,116~~~~~~~0F1D -double vhite pebble~117,5~~9,117~~~~~~~0F1B +double white pebble~117,5~~9,117~~~~~~~0F1B double black pebble~118,5~~9,118~~~~~~~0F1E -vhite and black pebble~119,5~~9,119~~~~~~~0F1F -triple vhite pebble~120,5~~9,120~~~~~~~0F1C +white and black pebble~119,5~~9,119~~~~~~~0F1F +triple white pebble~120,5~~9,120~~~~~~~0F1C triple black pebble~121,5~~9,121~~~~~~~0FCF -~122,5~~9,122 -~123,5~~9,123 -~124,5~~9,124 -~125,5~~9,125 -~126,5~~9,126 -~128,5~~10,33 +~122,5~~9,122~~~~~~~none +~123,5~~9,123~~~~~~~none +~124,5~~9,124~~~~~~~none +~125,5~~9,125~~~~~~~none +~126,5~~9,126~~~~~~~none +~128,5~~10,33~~~~~~~none logo sign chad.rtags~129,5~~10,34~~~~~~~0F15 logo sign lhag.rtags~130,5~~10,35~~~~~~~0F16 @@ -959,33 +991,36 @@ sgra.gcan.char.rtags~131,5~~10,36~~~~~~~0F17 khyud.pa~132,5~~10,37~~~~~~~0F18 sdong.tshugs~133,5~~10,38~~~~~~~0F19 -rinchen shad~203,1~~1,103~~~~~~~0F11 -sbrul shad~204,1~~1,104~~~~~~~0F08 -gter tsheg~206,1~~1,105~~~~~~~0F14 +utsama ka~57,2~~3,59~1,109~4,120~1,125~1,123~4,106~4,113~f88,f90 +utsama kha~58,2~~3,60~1,109~4,120~1,125~1,123~4,106~4,113~f88,f91 -utsama ka~57,2~~3,59~1,109~4,120~1,125~1,123~4,106~4,113 -utsama kha~58,2~~3,60~1,109~4,120~1,125~1,123~4,106~4,113 - -ra.mgo~173,4~~8,66 +// ra.mgo: +r~173,4~~8,66~~~~~~~0F62 tza.'phru~174,4~~8,67~~~~~~~0F39 -reversed tza.'phru~145,5~~8,68 -wa.btags~159,1~~8,69~~~~~~~0FAD~ -ya.btags~175,4~~8,70~~~~~~~0FB1 -ra.btags ~176,4~~8,71~~~~~~~0FB2 +// DLC FIXME: 0F39, yes? +reversed tza.'phru~145,5~~8,68~~~~~~~0F39 +// wa.btags: +w~159,1~~8,69~~~~~~~0FAD +// ya.btags: +y~175,4~~8,70~~~~~~~0FB1 +// ra.btags: +r~176,4~~8,71~~~~~~~0FB2 damaru.rtags~178,4~~8,72~~~~~~~0F88 half a.chen~179,4~~8,73~~~~~~~0F01 -ITHI secret sign~180,4~~8,74 -Terton's mark~181,4~~8,75 -Terton's mark~182,4~~8,76 -Terton's mark~183,4~~8,77 -Terton's mark~149,5~~8,78 -Terma mark~184,4~~8,79 -Terma mark~185,4~~8,80 -Terma mark~186,4~~8,81 -Mark~187,4~~8,82 +// DLC f68,fa0,f80,f72 comes close, but fa0 would be larger. +ITHI secret sign~180,4~~8,74~~~~~~~none +Terton's mark~181,4~~8,75~~~~~~~none +Terton's mark~182,4~~8,76~~~~~~~none +Terton's mark~183,4~~8,77~~~~~~~none +// Note that this is close to 0f11: +Terton's mark~149,5~~8,78~~~~~~~none +Terma mark~184,4~~8,79~~~~~~~none +Terma mark~185,4~~8,80~~~~~~~none +Terma mark~186,4~~8,81~~~~~~~none +Mark~187,4~~8,82~~~~~~~none -Chinese letter~155,5~~10,60 -Special combination~156,5~~10,61 +// DLC see chinese unicode: +Chinese letter~155,5~~10,60~~~~~~~none dril.bu~190,5~~10,62~~~~~~~0FC4 rdo.rje~191,5~~10,63~~~~~~~0FC5 @@ -997,37 +1032,22 @@ nor.bu.gnyis.khyil~196,5~~10,68~~~~~~~0FCA nor.bu.gsum.khyil~197,5~~10,69~~~~~~~0FCB nor.bu.bzhi.khyil~198,5~~10,70~~~~~~~0FCC -// FIXME: 0F7E? Or is there no Unicode that corresponds to this? +bindu + datse + thigle~242,1~~8,95~~~~~~~none + +// DLC FIXME: 0F7E? Or is there no Unicode that corresponds to this? WE GOT 2 7Es! small bindu~~~8,91~~~~~~~0F7E -bindu + datse~241,1~~8,94~~~~~~~0F83 -bindu + kigu~243,1~~8,96 -bindu + short gigu~244,1~~8,97 -bindu + log yig gigu~245,1~~8,98 -bindu + normal drengu~246,1~~8,99 -bindu + short drengbu~247,1~~8,100 -bindu + double drengbu~248,1~~8,101 -bindu + normal naro~249,1~~8,102 -bindu + raised naro~250,1~~8,103 -bindu + double naro~251,1~~8,104 - zhu.yig.mgo.rgyan~33,5~~9,33~~~~~~~0F0A -bka'.shog.mgo.rgyan~34,5~~9,34 -mnyam.yig.mgo.rgyan~35,5~~9,35 +bka'.shog.mgo.rgyan~34,5~~9,34~~~~~~~none +mnyam.yig.mgo.rgyan~35,5~~9,35~~~~~~~none mnyam.yig.mgo.rgyan~36,5~~9,36~~~~~~~0F09 -~37,5~~9,37 -zla tse gcig~210,1~~9,38~~~~~~~0F04 -half zla tse gcig~200,1~~9,39~~~~~~~0F05 -// zla tse gnyis~201,1~~9,40 is now punctuation. -yig.mgo.phur.shad~38,5~~9,41~~~~~~~0F06 -Yig.mgo.tsheg.shad~39,5~~9,42~~~~~~~0F07 +nameless sign~37,5~~9,37~~~~~~~none -shad + single tsheg~40,5~~9,43~~~~~~~0F0F -shad (hooked) + single tsheg~41,5~~9,44 -shad + double tsheg~42,5~~9,46 -sbrul.shad + single ornament~44,5~~9,48 -sbrul.shad + double ornament~46,5~~9,49 -sbrul.shad variant form~47,5~~9,50 +shad (hooked) + single tsheg~41,5~~9,44~~~~~~~none +shad + double tsheg~42,5~~9,46~~~~~~~none +sbrul.shad + single ornament~44,5~~9,48~~~~~~~none +sbrul.shad + double ornament~46,5~~9,49~~~~~~~none +sbrul.shad variant form~47,5~~9,50~~~~~~~none -reversed hu~147,5~~10,43 -Inverted ha~148,5~~10,44 +reversed hu~147,5~~10,43~~~~~~~none +Inverted ha~148,5~~10,44~~~~~~~none